From fdfe568d12f66ff15bb0604a445b58ff568df6ed Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 16 Apr 2006 23:43:49 +0000 Subject: [PATCH] no changes, just removed some commented out code git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/widgets/widgets.cpp | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/samples/widgets/widgets.cpp b/samples/widgets/widgets.cpp index 2378c6b78e..fdf77d4abb 100644 --- a/samples/widgets/widgets.cpp +++ b/samples/widgets/widgets.cpp @@ -441,11 +441,6 @@ void WidgetsFrame::InitBook() false, // don't select n // image id ); - -/* - wxColour colour = m_book->MSWGetBgColourForChild(pages[n]); - pages[n]->SetBackgroundColour(colour); -*/ } } @@ -640,12 +635,11 @@ WidgetsPageInfo::WidgetsPageInfo(Constructor ctor, const wxChar *label) m_next = NULL; - // dummy sorting: add and immediately sort on list according to label - + // dummy sorting: add and immediately sort in the list according to label if(WidgetsPage::ms_widgetPages) { WidgetsPageInfo *node_prev = WidgetsPage::ms_widgetPages; - if(wxStrcmp(label,node_prev->GetLabel().c_str())<0) + if ( wxStrcmp(label, node_prev->GetLabel().c_str()) < 0 ) { // add as first m_next = node_prev; @@ -657,10 +651,10 @@ WidgetsPageInfo::WidgetsPageInfo(Constructor ctor, const wxChar *label) do { node_next = node_prev->GetNext(); - if(node_next) + if ( node_next ) { // add if between two - if(wxStrcmp(label,node_next->GetLabel().c_str())<0) + if ( wxStrcmp(label, node_next->GetLabel().c_str()) < 0 ) { node_prev->SetNext(this); m_next = node_next; @@ -675,17 +669,15 @@ WidgetsPageInfo::WidgetsPageInfo(Constructor ctor, const wxChar *label) m_next = node_next; } node_prev = node_next; - }while(node_next); + } + while ( node_next ); } } else { // add when first - WidgetsPage::ms_widgetPages = this; - } - } // ---------------------------------------------------------------------------- -- 2.45.2