Fixed app_stub

dev-ui
Piotr Dziwinski 2013-05-27 09:42:01 +02:00
parent cc2e192f0d
commit 1a3aa0d60f
1 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ CApplication::~CApplication()
{ {
} }
std::string CApplication::GetDataFilePath(DataDir /* dataDir */, const std::string& subpath) std::string CApplication::GetDataFilePath(DataDir /* dataDir */, const std::string& subpath) const
{ {
return subpath; return subpath;
} }
@ -36,7 +36,7 @@ CEventQueue* CApplication::GetEventQueue()
return nullptr; return nullptr;
} }
std::string CApplication::GetDataDirPath() std::string CApplication::GetDataDirPath() const
{ {
return ""; return "";
} }
@ -46,7 +46,7 @@ Event CApplication::CreateUpdateEvent()
return Event(EVENT_NULL); return Event(EVENT_NULL);
} }
char CApplication::GetLanguageChar() char CApplication::GetLanguageChar() const
{ {
return 'E'; return 'E';
} }