From ef18489b863926619d2dec72b22d98e34d2ba1ae Mon Sep 17 00:00:00 2001 From: "selmer%netscape.com" Date: Mon, 18 Oct 1999 19:39:42 +0000 Subject: [PATCH] Corrected tab sort order git-svn-id: svn://10.0.0.236/trunk@51010 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/cck/driver/WizardUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/cck/driver/WizardUI.cpp b/mozilla/cck/driver/WizardUI.cpp index dafe4118297..7670416e353 100644 --- a/mozilla/cck/driver/WizardUI.cpp +++ b/mozilla/cck/driver/WizardUI.cpp @@ -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()