From dc3d140e3b5fe85a5b04e692deb48afa57aab6c4 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Thu, 29 Jul 2010 20:37:45 +0000 Subject: [PATCH] * fix the sorting of second level items - well there was a 50% chance that I'd get that bool right at first try ;-) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37815 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/time/ZoneView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/time/ZoneView.cpp b/src/preferences/time/ZoneView.cpp index faab480e71..4e7a02830a 100644 --- a/src/preferences/time/ZoneView.cpp +++ b/src/preferences/time/ZoneView.cpp @@ -305,7 +305,7 @@ TimeZoneView::_BuildRegionMenu() ((BStringItem*)second)->Text()); } }; - fCityList->SortItemsUnder(NULL, true, ListSorter::compare); + fCityList->SortItemsUnder(NULL, false, ListSorter::compare); }