The update to business-urls.c requires dialog-job.h

dialog-job.h requires some additional changes

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17665 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2008-10-27 11:20:55 +00:00
parent d8443c7585
commit 3561a6cbca
2 changed files with 4 additions and 3 deletions

View File

@ -42,6 +42,7 @@
#include "dialog-employee.h" #include "dialog-employee.h"
#include "dialog-vendor.h" #include "dialog-vendor.h"
#include "dialog-invoice.h" #include "dialog-invoice.h"
#include "dialog-job.h"
/* Disable -Waddress. GCC 4.2 warns (and fails to compile with -Werror) when /* Disable -Waddress. GCC 4.2 warns (and fails to compile with -Werror) when
* passing the address of a guid on the stack to QOF_BOOK_LOOKUP_ENTITY via * passing the address of a guid on the stack to QOF_BOOK_LOOKUP_ENTITY via

View File

@ -32,13 +32,13 @@ typedef struct _job_window JobWindow;
#include "dialog-search.h" #include "dialog-search.h"
/* Create or Edit a job */ /* Create or Edit a job */
GncJob * gnc_ui_job_new_return_handle (GncOwner *owner, GNCBook *book); GncJob * gnc_ui_job_new_return_handle (GncOwner *owner, QofBook *book);
JobWindow * gnc_ui_job_edit (GncJob *job); JobWindow * gnc_ui_job_edit (GncJob *job);
JobWindow * gnc_ui_job_new (GncOwner *owner, GNCBook *book); JobWindow * gnc_ui_job_new (GncOwner *owner, QofBook *book);
/* Search for Jobs */ /* Search for Jobs */
GNCSearchWindow * gnc_job_search (GncJob *start, GncOwner *owner, GNCSearchWindow * gnc_job_search (GncJob *start, GncOwner *owner,
GNCBook *book); QofBook *book);
/* /*
* These callbacks are for use with the gnc_general_search widget * These callbacks are for use with the gnc_general_search widget