[haiku-commits] r37815 - haiku/trunk/src/preferences/time

  • From: zooey@xxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 29 Jul 2010 22:37:46 +0200 (CEST)

Author: zooey
Date: 2010-07-29 22:37:45 +0200 (Thu, 29 Jul 2010)
New Revision: 37815
Changeset: http://dev.haiku-os.org/changeset/37815

Modified:
   haiku/trunk/src/preferences/time/ZoneView.cpp
Log:
* fix the sorting of second level items - well there was a 50%
  chance that I'd get that bool right at first try ;-)

Modified: haiku/trunk/src/preferences/time/ZoneView.cpp
===================================================================
--- haiku/trunk/src/preferences/time/ZoneView.cpp       2010-07-29 20:13:00 UTC 
(rev 37814)
+++ haiku/trunk/src/preferences/time/ZoneView.cpp       2010-07-29 20:37:45 UTC 
(rev 37815)
@@ -305,7 +305,7 @@
                                ((BStringItem*)second)->Text());
                }
        };
-       fCityList->SortItemsUnder(NULL, true, ListSorter::compare);
+       fCityList->SortItemsUnder(NULL, false, ListSorter::compare);
 
 }
 


Other related posts:

  • » [haiku-commits] r37815 - haiku/trunk/src/preferences/time - zooey