Move quickfill and gnc-entry-quickfill files from gnome-utils to app-utils because they don't require gtk/gnome.

(account-quickfill can't be moved because it also works with a GtkListStore.)

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20176 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2011-01-27 19:22:16 +00:00
parent cf4239d489
commit ebef4d5f0f
8 changed files with 10 additions and 6 deletions

View File

@ -20,6 +20,7 @@ INCLUDE_DIRECTORIES (${CMAKE_BINARY_DIR}/src/engine) # for swig-runtime.h
INCLUDE_DIRECTORIES (${CMAKE_CURRENT_SOURCE_DIR}) # for <option-util.h>
SET (app_utils_HEADERS
QuickFill.h
file-utils.h
gfec.h
gnc-basic-gobject.h
@ -34,6 +35,7 @@ SET (app_utils_HEADERS
gnc-druid-provider-desc-file.h
gnc-druid-provider-desc-multifile.h
gnc-druid-provider-file-cb.h
gnc-entry-quickfill.h
gnc-euro.h
gnc-exp-parser.h
gnc-gettext-util.h
@ -51,6 +53,7 @@ SET (SWIG_APP_UTILS_C ${CMAKE_CURRENT_BINARY_DIR}/swig-app-utils.c)
GNC_ADD_SWIG_COMMAND (${SWIG_APP_UTILS_C} ${CMAKE_CURRENT_SOURCE_DIR}/app-utils.i)
SET (app_utils_SOURCES
QuickFill.c
file-utils.c
gfec.c
gnc-account-merge.c
@ -64,6 +67,7 @@ SET (app_utils_SOURCES
gnc-druid-provider-desc-file.c
gnc-druid-provider-desc-multifile.c
gnc-druid-provider-file-cb.c
gnc-entry-quickfill.c
gnc-euro.c
gnc-exp-parser.c
gnc-gettext-util.c

View File

@ -35,6 +35,7 @@ AM_CPPFLAGS = \
libgncmod_app_utils_la_SOURCES = \
swig-app-utils.c \
QuickFill.c \
file-utils.c \
gfec.c \
gnc-account-merge.c \
@ -48,6 +49,7 @@ libgncmod_app_utils_la_SOURCES = \
gnc-druid-provider-desc-file.c \
gnc-druid-provider-desc-multifile.c \
gnc-druid-provider-file-cb.c \
gnc-entry-quickfill.c \
gnc-euro.c \
gnc-exp-parser.c \
gnc-gettext-util.c \
@ -60,6 +62,7 @@ libgncmod_app_utils_la_SOURCES = \
gncincludedir = ${GNC_INCLUDE_DIR}
gncinclude_HEADERS = \
QuickFill.h \
file-utils.h \
gfec.h \
gnc-basic-gobject.h \
@ -74,6 +77,7 @@ gncinclude_HEADERS = \
gnc-druid-provider-desc-file.h \
gnc-druid-provider-desc-multifile.h \
gnc-druid-provider-file-cb.h \
gnc-entry-quickfill.h \
gnc-euro.h \
gnc-exp-parser.h \
gnc-gettext-util.h \

View File

@ -32,7 +32,7 @@
#include "qof.h"
#include "engine/gncEntry.h"
#include "gnome-utils/QuickFill.h"
#include "app-utils/QuickFill.h"
/** Create/fetch a quickfill GncEntry description strings.
*

View File

@ -41,7 +41,7 @@
#include "gncEntryLedger.h"
#include "gncEntryLedgerP.h"
#include "quickfillcell.h"
#include "gnome-utils/gnc-entry-quickfill.h"
#include "app-utils/gnc-entry-quickfill.h"
/* XXX: This should go elsewhere */

View File

@ -26,7 +26,6 @@ AM_CPPFLAGS = \
${IGE_MAC_CFLAGS}
libgncmod_gnome_utils_la_SOURCES = \
QuickFill.c \
account-quickfill.c \
cursors.c \
dialog-account.c \
@ -62,7 +61,6 @@ libgncmod_gnome_utils_la_SOURCES = \
gnc-druid-provider-file-gnome.c \
gnc-druid-provider-multifile-gnome.c \
gnc-embedded-window.c \
gnc-entry-quickfill.c \
gnc-file.c \
gnc-frequency.c \
gnc-recurrence.c \
@ -106,7 +104,6 @@ libgncmod_gnome_utils_la_SOURCES = \
gncincludedir = ${GNC_INCLUDE_DIR}
gncinclude_HEADERS = \
QuickFill.h \
account-quickfill.h \
dialog-account.h \
dialog-book-close.h \
@ -135,7 +132,6 @@ gncinclude_HEADERS = \
gnc-dense-cal-store.h \
gnc-druid-gnome-ui.h \
gnc-embedded-window.h \
gnc-entry-quickfill.h \
gnc-file.h \
gnc-frequency.h \
gnc-recurrence.h \