diff --git a/po/POTFILES.in b/po/POTFILES.in index 560fc09c0f..d160b0a998 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -417,6 +417,7 @@ src/import-export/aqb/assistant-ab-initial.c src/import-export/aqb/assistant-ab-initial.glade src/import-export/aqb/dialog-ab-daterange.c src/import-export/aqb/dialog-ab.glade +src/import-export/aqb/dialog-ab-pref.glade src/import-export/aqb/dialog-ab-trans.c src/import-export/aqb/gnc-ab-getbalance.c src/import-export/aqb/gnc-ab-gettrans.c diff --git a/src/import-export/import-match-picker.c b/src/import-export/import-match-picker.c index 5f0cc3d2b1..235ec0360c 100644 --- a/src/import-export/import-match-picker.c +++ b/src/import-export/import-match-picker.c @@ -484,11 +484,11 @@ init_match_picker_gui(GNCImportMatchPicker * matcher) /* now that we've bound the checkbox appropriately we can hook up the * change callback */ - gtk_signal_connect ((GtkObject *)matcher->reconciled_chk, "toggled", + g_signal_connect ((GObject *)matcher->reconciled_chk, "toggled", G_CALLBACK(match_show_reconciled_changed_cb), matcher); /* now that we've bound the checkbox appropriately we can hook up the change callback */ - gtk_signal_connect((GtkObject *)matcher->reconciled_chk, "toggled", G_CALLBACK(match_show_reconciled_changed_cb), matcher); + g_signal_connect((GObject *)matcher->reconciled_chk, "toggled", G_CALLBACK(match_show_reconciled_changed_cb), matcher); gnc_restore_window_size(GNC_PREFS_GROUP, GTK_WINDOW (matcher->transaction_matcher)); diff --git a/src/libqof/qof/CMakeLists.txt b/src/libqof/qof/CMakeLists.txt index 22ed411e95..78c0ea8339 100644 --- a/src/libqof/qof/CMakeLists.txt +++ b/src/libqof/qof/CMakeLists.txt @@ -120,10 +120,10 @@ SET(qof_test_HEADERS qofbook.h qofinstance.h qofobject.h - /qofsession.h + qofsession.h ) INSTALL(FILES ${qof_test_HEADERS} DESTINATION libexec/gnucash/src/libqof/qof/test) SET_LOCAL_DIST(qof_DIST_local CMakeLists.txt Makefile.am ${gnc_qof_EXTRA_DIST} ${gnc_qof_HEADERS} ${gnc_qof_noinst_HEADERS} ${gnc_qof_SOURCES}) -SET(qof_DIST ${qof_DIST_local} ${test_qof_DIST} PARENT_SCOPE) \ No newline at end of file +SET(qof_DIST ${qof_DIST_local} ${test_qof_DIST} PARENT_SCOPE)