Revision: 3903 http://geany.svn.sourceforge.net/geany/?rev=3903&view=rev Author: eht16 Date: 2009-06-29 19:46:04 +0000 (Mon, 29 Jun 2009)
Log Message: ----------- Fix duplicate "context_action_cmd" key. Use different icons for "Methods" and "Procedures" in the symbol list for Tcl files.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.tcl trunk/src/symbols.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2009-06-28 12:08:18 UTC (rev 3902) +++ trunk/ChangeLog 2009-06-29 19:46:04 UTC (rev 3903) @@ -1,3 +1,11 @@ +2009-06-29 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> + + * data/filetypes.tcl, src/symbols.c: + Fix duplicate "context_action_cmd" key. + Use different icons for "Methods" and "Procedures" in the symbol + list for Tcl files. + + 2009-06-28 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* tagmanager/tcl.c, src/symbol.c:
Modified: trunk/data/filetypes.tcl =================================================================== --- trunk/data/filetypes.tcl 2009-06-28 12:08:18 UTC (rev 3902) +++ trunk/data/filetypes.tcl 2009-06-29 19:46:04 UTC (rev 3903) @@ -50,10 +50,7 @@ # context action command (please see Geany's main documentation for details) context_action_cmd=
-# context action command (please see Geany's main documentation for details) -context_action_cmd=
- [build_settings] # %f will be replaced by the complete filename # %e will be replaced by the filename without extension
Modified: trunk/src/symbols.c =================================================================== --- trunk/src/symbols.c 2009-06-28 12:08:18 UTC (rev 3902) +++ trunk/src/symbols.c 2009-06-29 19:46:04 UTC (rev 3903) @@ -722,7 +722,7 @@ &(tv_iters.tag_namespace), _("Namespaces"), "classviewer-namespace", &(tv_iters.tag_class), _("Classes"), "classviewer-class", &(tv_iters.tag_member), _("Methods"), "classviewer-method", - &(tv_iters.tag_function), _("Procedures"), "classviewer-method", + &(tv_iters.tag_function), _("Procedures"), "classviewer-other", NULL); break; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.