SF.net SVN: geany:[4087] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sat Aug 15 17:21:30 UTC 2009


Revision: 4087
          http://geany.svn.sourceforge.net/geany/?rev=4087&view=rev
Author:   eht16
Date:     2009-08-15 17:21:30 +0000 (Sat, 15 Aug 2009)

Log Message:
-----------
Temporarily disable reshowing calltips when the autocompletion list was closed implicitly by not choosing an item to fix problems with wrongly displayed calltips.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/editor.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-08-14 17:46:59 UTC (rev 4086)
+++ trunk/ChangeLog	2009-08-15 17:21:30 UTC (rev 4087)
@@ -1,7 +1,15 @@
+2009-08-15  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/editor.c:
+   Temporarily disable reshowing calltips when the autocompletion
+   list was closed implicitly by not choosing an item to fix
+   problems with wrongly displayed calltips.
+
+
 2009-08-13  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * wscript:
-   Add command '--hackingdoc' to create the HTML form of the 
+   Add command '--hackingdoc' to create the HTML form of the
    HACKING file.
 
 

Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c	2009-08-14 17:46:59 UTC (rev 4086)
+++ trunk/src/editor.c	2009-08-15 17:21:30 UTC (rev 4087)
@@ -657,8 +657,12 @@
 		case ':':	/* C/C++ class:: syntax */
 		/* tag autocompletion */
 		default:
+#if 0
 			if (! editor_start_auto_complete(editor, pos, FALSE))
 				request_reshowing_calltip(nt);
+#else
+			editor_start_auto_complete(editor, pos, FALSE);
+#endif
 	}
 	check_line_breaking(editor, pos, nt->ch);
 }


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list