[rkward-cvs] SF.net SVN: rkward:[2638] trunk/rkward
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Thu Sep 3 09:04:48 UTC 2009
Revision: 2638
http://rkward.svn.sourceforge.net/rkward/?rev=2638&view=rev
Author: tfry
Date: 2009-09-03 09:04:48 +0000 (Thu, 03 Sep 2009)
Log Message:
-----------
Small cleanup
Modified Paths:
--------------
trunk/rkward/ChangeLog
trunk/rkward/rkward/rkward.cpp
Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog 2009-09-02 12:16:26 UTC (rev 2637)
+++ trunk/rkward/ChangeLog 2009-09-03 09:04:48 UTC (rev 2638)
@@ -1,3 +1,4 @@
+- Fix some potential path issues on Windows
- "Analysis" menu was restructured, slightly
- Debug output (previously sent to stderr) is now written to a temporary file
- On plugin help pages, display a link to invoke the plugin
Modified: trunk/rkward/rkward/rkward.cpp
===================================================================
--- trunk/rkward/rkward/rkward.cpp 2009-09-02 12:16:26 UTC (rev 2637)
+++ trunk/rkward/rkward/rkward.cpp 2009-09-03 09:04:48 UTC (rev 2638)
@@ -287,7 +287,8 @@
RK_ASSERT (!RKGlobals::rInterface ());
// make sure our general purpose files directory exists
- RK_ASSERT (QDir ().mkpath (RKSettingsModuleGeneral::filesPath()));
+ bool ok = QDir ().mkpath (RKSettingsModuleGeneral::filesPath());
+ RK_ASSERT (ok);
RKGlobals::rinter = new RInterface ();
new RObjectList ();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list