All files compile in Unicode mode, but I have only converted things near

points of compiler warnings/errors, they have not been exhaustively
reviewed.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-04-16 14:19:32 +00:00
parent 9aa521548d
commit 87138c520c
17 changed files with 306 additions and 304 deletions

View File

@@ -604,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;
}
@@ -619,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 )
{
@@ -632,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;
}