mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix Gtk warnings.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2834 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
7260fc741a
commit
1e9d2ff8b0
@ -1,5 +1,8 @@
|
||||
2000-09-12 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* src/gnome/dialog-transfer.c (gnc_xfer_dialog_close_cb):
|
||||
disconnect amount edit entry signals to avoid gtk warnings.
|
||||
|
||||
* src/engine/Transaction.h: make xaccInitTransaction a private
|
||||
function.
|
||||
|
||||
|
@ -401,6 +401,11 @@ static int
|
||||
gnc_xfer_dialog_close_cb(GnomeDialog *dialog, gpointer data)
|
||||
{
|
||||
XferDialog * xferData = data;
|
||||
GtkWidget *entry;
|
||||
|
||||
entry = gnc_amount_edit_gtk_entry (GNC_AMOUNT_EDIT (xferData->amount_edit));
|
||||
|
||||
gtk_signal_disconnect_by_data(GTK_OBJECT(entry), xferData);
|
||||
|
||||
xfer_dialogs = g_list_remove(xfer_dialogs, dialog);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user