Fixed app_stub
parent
cc2e192f0d
commit
1a3aa0d60f
|
@ -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;
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ CEventQueue* CApplication::GetEventQueue()
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
std::string CApplication::GetDataDirPath()
|
||||
std::string CApplication::GetDataDirPath() const
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ Event CApplication::CreateUpdateEvent()
|
|||
return Event(EVENT_NULL);
|
||||
}
|
||||
|
||||
char CApplication::GetLanguageChar()
|
||||
char CApplication::GetLanguageChar() const
|
||||
{
|
||||
return 'E';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue