From: <ma...@us...> - 2003-12-25 14:25:48
|
Update of /cvsroot/sharedaemon/ui-wx/src In directory sc8-pr-cvs1:/tmp/cvs-serv13701 Modified Files: MainDlg.cpp Log Message: Fixes unicode compatibility. Index: MainDlg.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MainDlg.cpp,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- MainDlg.cpp 25 Dec 2003 02:27:48 -0000 1.38 +++ MainDlg.cpp 25 Dec 2003 14:25:45 -0000 1.39 @@ -998,9 +998,8 @@ return; } wxLogDebug( - wxT("%s,%d: Adding page `%s` with title `%s`, image `%s`."), - wxString(__FILE__).c_str(), __LINE__, short_title.c_str(), - long_title.c_str(), image.c_str() + wxT("Adding page `%s` with title `%s`, image `%s`."), + short_title.c_str(), long_title.c_str(), image.c_str() ); Page *newpage = new Page; newpage->content = page; |