]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/list.cpp
Moved wxGLCanvas to more normal positions
[wxWidgets.git] / src / common / list.cpp
index 9d88dea967b743fd963e0e9568cf2b7972619b66..b56beb3dec4353f54f3438e49816f5fd27462227 100644 (file)
@@ -172,10 +172,10 @@ void wxListBase::DoCopy(const wxListBase& list)
     m_nodeLast = (wxNodeBase *) NULL;
 
     switch (m_keyType) {
-    
+
         case wxKEY_INTEGER:
             {
-                long key;                
+                long key;
                 for ( wxNodeBase *node = list.GetFirst(); node; node = node->GetNext() )
                 {
                     key = node->GetKeyInteger();
@@ -186,7 +186,7 @@ void wxListBase::DoCopy(const wxListBase& list)
 
         case wxKEY_STRING:
             {
-                const wxChar *key;                
+                const wxChar *key;
                 for ( wxNodeBase *node = list.GetFirst(); node; node = node->GetNext() )
                 {
                     key = node->GetKeyString();