]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/notebook.cpp
Remove hard TABs from 3rd party files in src directory.
[wxWidgets.git] / src / gtk / notebook.cpp
index 1ace65dc16c324c8db6170b867231dc3b9447732..4802f31fcd7ec6dfc36be9593d97d486ef4a36c6 100644 (file)
@@ -357,7 +357,7 @@ wxNotebookPage *wxNotebook::DoRemovePage( size_t page )
     wxGtkNotebookPage* p = GetNotebookPage(page);
     m_pagesData.DeleteObject(p);
     delete p;
-    
+
     return client;
 }
 
@@ -373,7 +373,7 @@ bool wxNotebook::InsertPage( size_t position,
                wxT("Can't add a page whose parent is not the notebook!") );
 
     wxCHECK_MSG( position <= GetPageCount(), false,
-                 _T("invalid page index in wxNotebookPage::InsertPage()") );
+                 wxT("invalid page index in wxNotebookPage::InsertPage()") );
 
     // Hack Alert! (Part II): See above in wxNotebook::AddChildGTK
     // why this has to be done.