aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/application.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2011-11-08 10:26:04 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:49 +0100
commitc1c799117e7076046182e12d71d06e2c9444e9be (patch)
tree7940de26d0c786134fa103703320bd3efcbba00c /src/menu/application.cpp
parent31ba94d4efa6e3f64ffacf1711438e88d8b3035d (diff)
downloadusdx-c1c799117e7076046182e12d71d06e2c9444e9be.tar.gz
usdx-c1c799117e7076046182e12d71d06e2c9444e9be.tar.xz
usdx-c1c799117e7076046182e12d71d06e2c9444e9be.zip
changed all wstring/wchar_t to string/char
Diffstat (limited to 'src/menu/application.cpp')
-rw-r--r--src/menu/application.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu/application.cpp b/src/menu/application.cpp
index 089388c0..37e532a2 100644
--- a/src/menu/application.cpp
+++ b/src/menu/application.cpp
@@ -119,7 +119,7 @@ namespace usdx
repaint();
SDL_GL_SwapBuffers();
- LOG4CXX_TRACE(log, L"repaint");
+ LOG4CXX_TRACE(log, "repaint");
// poll current events
while (event_manager.available() && SDL_PollEvent(&event)) {
@@ -185,7 +185,7 @@ namespace usdx
}
if (! display) {
- LOG4CXX_ERROR(log, L"SDL_SetVideoMode failed.");
+ LOG4CXX_ERROR(log, "SDL_SetVideoMode failed.");
throw new std::exception();
}