]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/splitter.cpp
a wxCHECK added
[wxWidgets.git] / src / generic / splitter.cpp
index f5e8b7985574da315dd73d5bd90d35a16d02eb0d..853774c7858f4c02d80a2dbc04029ddee03bee98 100644 (file)
@@ -148,7 +148,8 @@ void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event)
     // reset the cursor
 #ifdef __WXMOTIF__
     SetCursor(* wxSTANDARD_CURSOR);
-#else
+#endif
+#ifdef __WXMSW__
     SetCursor(wxCursor());
 #endif
 
@@ -603,7 +604,7 @@ bool wxSplitterWindow::Unsplit(wxWindow *toRemove)
     }
     else
     {
-        wxFAIL_MSG("splitter: attempt to remove a non-existent window");
+        wxFAIL_MSG(_T("splitter: attempt to remove a non-existent window"));
 
         return FALSE;
     }
@@ -618,8 +619,8 @@ bool wxSplitterWindow::Unsplit(wxWindow *toRemove)
 // Replace a window with another one
 bool wxSplitterWindow::ReplaceWindow(wxWindow *winOld, wxWindow *winNew)
 {
-    wxCHECK_MSG( winOld, FALSE, "use one of Split() functions instead" );
-    wxCHECK_MSG( winNew, FALSE, "use Unsplit() functions instead" );
+    wxCHECK_MSG( winOld, FALSE, _T("use one of Split() functions instead") );
+    wxCHECK_MSG( winNew, FALSE, _T("use Unsplit() functions instead") );
 
     if ( winOld == m_windowTwo )
     {
@@ -631,7 +632,7 @@ bool wxSplitterWindow::ReplaceWindow(wxWindow *winOld, wxWindow *winNew)
     }
     else
     {
-        wxFAIL_MSG("splitter: attempt to replace a non-existent window");
+        wxFAIL_MSG(_T("splitter: attempt to replace a non-existent window"));
 
         return FALSE;
     }