mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Sort the curreny list by symbol, not name, since the symbol is
displayed first. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7389 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
914865ef2e
commit
443a632465
@ -135,8 +135,8 @@ add_item(GNCCurrencyEdit *gce, gnc_commodity *commodity)
|
||||
static int
|
||||
currency_compare(gconstpointer a, gconstpointer b)
|
||||
{
|
||||
return strcmp (gnc_commodity_get_fullname (a),
|
||||
gnc_commodity_get_fullname (b));
|
||||
return strcmp (gnc_commodity_get_printname (a),
|
||||
gnc_commodity_get_printname (b));
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user