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

tfry at users.sourceforge.net tfry at users.sourceforge.net
Sun Dec 11 16:37:46 UTC 2011


Revision: 4100
          http://rkward.svn.sourceforge.net/rkward/?rev=4100&view=rev
Author:   tfry
Date:     2011-12-11 16:37:46 +0000 (Sun, 11 Dec 2011)
Log Message:
-----------
Reformatting

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

Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog	2011-12-11 16:37:23 UTC (rev 4099)
+++ trunk/rkward/ChangeLog	2011-12-11 16:37:46 UTC (rev 4100)
@@ -1,3 +1,4 @@
+- Fixed: Function argument hints for the second half of the parameter list would not be quoted, correctly
 - Improve keypress handling issues in the R Console, when the cursor or a selection is outside the editable range
 - 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

Modified: trunk/rkward/rkward/rkconsole.cpp
===================================================================
--- trunk/rkward/rkward/rkconsole.cpp	2011-12-11 16:37:23 UTC (rev 4099)
+++ trunk/rkward/rkward/rkconsole.cpp	2011-12-11 16:37:46 UTC (rev 4100)
@@ -282,13 +282,11 @@
 		cursorAtTheEnd ();
 		return true;
 	} else if (key == Qt::Key_Enter || key == Qt::Key_Return) {
-		KTextEditor::CodeCompletionInterface *iface =
-		qobject_cast<KTextEditor::CodeCompletionInterface*> (view);
-		if (iface) {
-			if (iface->isCompletionActive ()) {
-				iface->forceCompletion ();
-				return true;
-			}
+		// currently, these are auto-text hints, only
+		KTextEditor::CodeCompletionInterface *iface = qobject_cast<KTextEditor::CodeCompletionInterface*> (view);
+		if (iface && iface->isCompletionActive ()) {
+			iface->forceCompletion ();
+			return true;
 		}
 
 		hinter->hideArgHint ();

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