aboutsummaryrefslogtreecommitdiffstats
path: root/src/frames
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/frames
parent31ba94d4efa6e3f64ffacf1711438e88d8b3035d (diff)
downloadusdx-c1c799117e7076046182e12d71d06e2c9444e9be.tar.gz
usdx-c1c799117e7076046182e12d71d06e2c9444e9be.tar.xz
usdx-c1c799117e7076046182e12d71d06e2c9444e9be.zip
changed all wstring/wchar_t to string/char
Diffstat (limited to '')
-rw-r--r--src/frames/loading_frame.cpp5
-rw-r--r--src/frames/loading_frame.hpp4
2 files changed, 8 insertions, 1 deletions
diff --git a/src/frames/loading_frame.cpp b/src/frames/loading_frame.cpp
index cf1f0382..afaa7d0b 100644
--- a/src/frames/loading_frame.cpp
+++ b/src/frames/loading_frame.cpp
@@ -30,12 +30,15 @@
namespace usdx
{
+ log4cxx::LoggerPtr LoadingFrame::log =
+ log4cxx::Logger::getLogger("usdx.frames.loading_frame");
+
LoadingFrame::LoadingFrame() :
Frame(NULL)
{
// RgbColor background(100, 100, 100);
// set_background(new FrameBackgroundColor(background));
- set_background(new FrameBackgroundImage(L"game/themes/Deluxe/[bg-load]blue.jpg"));
+ set_background(new FrameBackgroundImage("game/themes/Deluxe/[bg-load]blue.jpg"));
}
LoadingFrame::~LoadingFrame()
diff --git a/src/frames/loading_frame.hpp b/src/frames/loading_frame.hpp
index cf8864e4..5ddf0bf4 100644
--- a/src/frames/loading_frame.hpp
+++ b/src/frames/loading_frame.hpp
@@ -28,11 +28,15 @@
#define LOADING_FRAME_HPP
#include "frame.hpp"
+#include <log4cxx/logger.h>
namespace usdx
{
class LoadingFrame : public Frame
{
+ private:
+ static log4cxx::LoggerPtr log;
+
public:
LoadingFrame();
virtual ~LoadingFrame();