[rkward-cvs] SF.net SVN: rkward: [756] trunk/rkward
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Thu Sep 21 11:26:24 UTC 2006
Revision: 756
http://svn.sourceforge.net/rkward/?rev=756&view=rev
Author: tfry
Date: 2006-09-21 04:26:19 -0700 (Thu, 21 Sep 2006)
Log Message:
-----------
fix filename ending filter when opening script files
Modified Paths:
--------------
trunk/rkward/ChangeLog
trunk/rkward/rkward/rkward.cpp
Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog 2006-09-21 11:18:03 UTC (rev 755)
+++ trunk/rkward/ChangeLog 2006-09-21 11:26:19 UTC (rev 756)
@@ -1,4 +1,6 @@
-- Yet another crash on more than 100 rows bug fixed
+- fix "Open R Script File" filename ending filter
+- add mismatching brace detection to syntax highlighting
+- yet another crash on more than 100 rows bug fixed
- RKWard should now be fully UTF-8 aware. All characters are passed to and from R reliably
--- Version 0.3.7 - Sep-17-2006
Modified: trunk/rkward/rkward/rkward.cpp
===================================================================
--- trunk/rkward/rkward/rkward.cpp 2006-09-21 11:18:03 UTC (rev 755)
+++ trunk/rkward/rkward/rkward.cpp 2006-09-21 11:26:19 UTC (rev 756)
@@ -683,7 +683,7 @@
KURL::List urls;
KURL::List::const_iterator it;
- urls = KFileDialog::getOpenURLs (":<rfiles>", "*.R;*.r;*.S;*.s;*.q", this, i18n ("Open command file(s)"));
+ urls = KFileDialog::getOpenURLs (":<rfiles>", "*.R *.r *.S *.s *.q", this, i18n ("Open command file(s)"));
for (it = urls.begin() ; it != urls.end() ; ++it){
slotOpenCommandEditor (*it);
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