Corrected tab sort order

git-svn-id: svn://10.0.0.236/trunk@51010 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
selmer%netscape.com 1999-10-18 19:39:42 +00:00
parent 614348b081
commit ef18489b86

View File

@ -744,7 +744,7 @@ int TabSort(const void *w1, const void *w2)
return -1;
// Primary key is equal, Secondary key is x coordinate
return (widget2->location.x - widget1->location.x);
return (widget1->location.x - widget2->location.x);
}
void CWizardUI::SortWidgetsForTabOrder()