From ae93c445daee7a80bbdf298e97a9c5bbced97140 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 --- cck/driver/WizardUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cck/driver/WizardUI.cpp b/cck/driver/WizardUI.cpp index dafe4118297..7670416e353 100644 --- a/cck/driver/WizardUI.cpp +++ b/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()