[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]
[XaraXtreme-commits] Commit Complete
Commit by : luke
Repository : xara
Revision : 1427
Date : Tue Jul 11 10:24:18 BST 2006
Changed paths:
M /Trunk/XaraLX/wxOil/helpuser.cpp
Fix bomb-out if help directory not present
Diff:
Index: Trunk/XaraLX/wxOil/helpuser.cpp
===================================================================
--- Trunk/XaraLX/wxOil/helpuser.cpp (revision 1426)
+++ Trunk/XaraLX/wxOil/helpuser.cpp (revision 1427)
@@ -1152,7 +1152,8 @@
}
achzHelpPath = strHelpPath;
- return wxDir::Exists( strHelpPath );
+ PORTNOTE( "help", "We should check and report non-existant help directory at some point" )
+ return TRUE; // wxDir::Exists( strHelpPath );
}
Xara