mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
Changed: Use of CFile::getApplicationDirectory
This commit is contained in:
parent
c5074063d3
commit
9b856d4dc5
4 changed files with 8 additions and 12 deletions
|
@ -957,11 +957,10 @@ int main(int /* argc */, char ** /* argv */)
|
|||
NLMISC::CApplicationContext myApplicationContext;
|
||||
|
||||
#ifdef NL_OS_UNIX
|
||||
std::string homeDir = getenv("HOME");
|
||||
NLMISC::CPath::addSearchPath( homeDir + "/.nel");
|
||||
NLMISC::CPath::addSearchPath(NLMISC::CFile::getApplicationDirectory("NeL"));
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
NLMISC::CPath::addSearchPath(NL_ZVIEWER_CFG);
|
||||
NLMISC::CPath::addSearchPath(NL_ZVIEWER_CFG);
|
||||
|
||||
initViewerConfig("zviewer.cfg");
|
||||
|
||||
|
|
|
@ -424,11 +424,10 @@ int main( int argc, char ** argv )
|
|||
NLMISC::CApplicationContext appContext;
|
||||
|
||||
#ifdef NL_OS_UNIX
|
||||
std::string homeDir = getenv("HOME");
|
||||
NLMISC::CPath::addSearchPath( homeDir + "/.nel");
|
||||
NLMISC::CPath::addSearchPath(NLMISC::CFile::getApplicationDirectory("NeL"));
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
NLMISC::CPath::addSearchPath(NL_MK_SH_ID_CFG);
|
||||
NLMISC::CPath::addSearchPath(NL_MK_SH_ID_CFG);
|
||||
|
||||
// read args
|
||||
if( argc < 2 )
|
||||
|
|
|
@ -86,11 +86,10 @@ void init()
|
|||
try
|
||||
{
|
||||
#ifdef NL_OS_UNIX
|
||||
std::string homeDir = getenv("HOME");
|
||||
NLMISC::CPath::addSearchPath( homeDir + "/.nel");
|
||||
NLMISC::CPath::addSearchPath(NLMISC::CFile::getApplicationDirectory("NeL"));
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
NLMISC::CPath::addSearchPath(NL_BIB_CFG);
|
||||
NLMISC::CPath::addSearchPath(NL_BIB_CFG);
|
||||
|
||||
CConfigFile cf;
|
||||
uint i;
|
||||
|
|
|
@ -122,11 +122,10 @@ void initConfig()
|
|||
try
|
||||
{
|
||||
#ifdef NL_OS_UNIX
|
||||
std::string homeDir = getenv("HOME");
|
||||
NLMISC::CPath::addSearchPath( homeDir + "/.nel");
|
||||
NLMISC::CPath::addSearchPath(NLMISC::CFile::getApplicationDirectory("NeL"));
|
||||
#endif // NL_OS_UNIX
|
||||
|
||||
NLMISC::CPath::addSearchPath(NL_BIRB_CFG);
|
||||
NLMISC::CPath::addSearchPath(NL_BIRB_CFG);
|
||||
|
||||
CConfigFile cf;
|
||||
|
||||
|
|
Loading…
Reference in a new issue