Excluded windows related paths from being checked on Linux
This commit is contained in:
parent
3c59e11f57
commit
43e57d0dd5
|
@ -6247,8 +6247,10 @@ void MyFrame::validatePaths()
|
||||||
CHECK ( wxFileExists, xtmDtdPath );
|
CHECK ( wxFileExists, xtmDtdPath );
|
||||||
CHECK ( wxFileExists, lzxDtdPath );
|
CHECK ( wxFileExists, lzxDtdPath );
|
||||||
CHECK ( wxFileExists, xliffDtdPath );
|
CHECK ( wxFileExists, xliffDtdPath );
|
||||||
|
#ifdef __WXMSW__
|
||||||
CHECK ( wxDirExists, aspellDataPath );
|
CHECK ( wxDirExists, aspellDataPath );
|
||||||
CHECK ( wxDirExists, aspellDictPath );
|
CHECK ( wxDirExists, aspellDictPath );
|
||||||
|
#endif // __WXMSW__
|
||||||
#undef CHECK
|
#undef CHECK
|
||||||
|
|
||||||
if ( valid )
|
if ( valid )
|
||||||
|
|
Loading…
Reference in New Issue