Fix order of parameters to gnc_ui_common_commodity_modal, and 334181.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13606 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2006-03-11 23:41:51 +00:00
parent fe14d8341c
commit 5d58c5ce49
2 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,9 @@
2006-03-11 Andreas Köhler <andi5.py@gmx.net>
* src/gnome-utils/dialog-commodity.c: Fix order of parameters to
gnc_ui_common_commodity_modal, and 334181.
* src/gnome-utils/window-main-summarybar.c: Unref the summary bar
list store so that it gets deleted together with the combobox.

View File

@ -1085,8 +1085,8 @@ gnc_ui_new_commodity_modal_full(const char * namespace,
gnc_commodity *result;
ENTER(" ");
result = gnc_ui_common_commodity_modal(NULL, parent, namespace, fullname,
mnemonic, cusip, 10000);
result = gnc_ui_common_commodity_modal(NULL, parent, namespace, cusip,
fullname, mnemonic, 10000);
LEAVE(" ");
return result;
}