mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
change loc for file search
This commit is contained in:
parent
3a648b702f
commit
3a8fd73d96
3 changed files with 7 additions and 5 deletions
|
@ -202,9 +202,9 @@ sym_dictionary_makeL( MPFORMAL const XP_UCHAR* aDictName )
|
|||
} else {
|
||||
|
||||
#if defined __WINS__
|
||||
_LIT( dir,"z:\\system\\apps\\XWORDS\\" );
|
||||
_LIT( dir,"z:\\system\\apps\\" XWORDS_DIR "\\" );
|
||||
#elif defined __MARM__
|
||||
_LIT( dir,"c:\\system\\apps\\XWORDS\\" );
|
||||
_LIT( dir,"c:\\system\\apps\\" XWORDS_DIR "\\" );
|
||||
#endif
|
||||
TFileName nameD; /* need the full path to name in this */
|
||||
nameD.Copy( dir );
|
||||
|
|
|
@ -808,9 +808,11 @@ sym_drawctxt_make( MPFORMAL CWindowGc* aGC, CCoeEnv* aCoeEnv,
|
|||
|
||||
/* this path will change for other platforms/devices!!! */
|
||||
#if defined __WINS__
|
||||
_LIT( kBitmapsPath, "z:\\system\\apps\\XWORDS\\xwords.mbm" );
|
||||
_LIT( kBitmapsPath, "z:\\system\\apps\\" XWORDS_DIR
|
||||
"\\" XWORDS_DIR ".mbm" );
|
||||
#elif defined __MARM__
|
||||
_LIT( kBitmapsPath, "c:\\system\\apps\\XWORDS\\xwords.mbm" );
|
||||
_LIT( kBitmapsPath, "c:\\system\\apps\\" XWORDS_DIR
|
||||
"\\" XWORDS_DIR ".mbm" );
|
||||
#endif
|
||||
TFileName bitmapFile( kBitmapsPath );
|
||||
|
||||
|
|
|
@ -919,7 +919,7 @@ CXWordsAppView::GetXwordsRWDir( TFileName* aPathRef, TDriveReason aWhy )
|
|||
break; /* don't want a drive */
|
||||
}
|
||||
|
||||
_LIT( dir,"\\system\\apps\\XWORDS\\" );
|
||||
_LIT( dir,"\\system\\apps\\" XWORDS_DIR "\\" );
|
||||
aPathRef->Append( dir );
|
||||
} /* GetXwordsRWDir */
|
||||
|
||||
|
|
Loading…
Reference in a new issue