[rkward-cvs] SF.net SVN: rkward:[4070] trunk/rkward

tfry at users.sourceforge.net tfry at users.sourceforge.net
Sat Dec 3 14:49:39 UTC 2011


Revision: 4070
          http://rkward.svn.sourceforge.net/rkward/?rev=4070&view=rev
Author:   tfry
Date:     2011-12-03 14:49:38 +0000 (Sat, 03 Dec 2011)
Log Message:
-----------
Don't try to convert workspace url to latin1

Modified Paths:
--------------
    trunk/rkward/ChangeLog
    trunk/rkward/rkward/main.cpp

Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog	2011-12-03 14:35:39 UTC (rev 4069)
+++ trunk/rkward/ChangeLog	2011-12-03 14:49:38 UTC (rev 4070)
@@ -1,3 +1,4 @@
+- Fixed: Failure to open workspaces with non-latin1 filenames from the command line
 - Fixed: Saving / restoring workplace layout would fail when saving to directories with unusual characters
 - Only install translations which are at least 80% complete (not counting strings in plugins, which are not yet translatable)
 - When asking for workspace file to open, use appropriate file filter

Modified: trunk/rkward/rkward/main.cpp
===================================================================
--- trunk/rkward/rkward/main.cpp	2011-12-03 14:35:39 UTC (rev 4069)
+++ trunk/rkward/rkward/main.cpp	2011-12-03 14:49:38 UTC (rev 4070)
@@ -149,7 +149,7 @@
 
 	RKWardStartupOptions *stoptions = new RKWardStartupOptions;
 	if (args->count ()) {
-		stoptions->initial_url = KUrl (args->makeURL (args->arg (0).toLatin1()));
+		stoptions->initial_url = args->url (0);
 	}
 	stoptions->evaluate = args->getOption ("evaluate");
 

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