Revision: 141
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=141&view=rev
Author: frlan
Date: 2008-08-13 19:02:32 +0000 (Wed, 13 Aug 2008)
Log Message:
-----------
GeanyVC: Applied a patch by Enrico to set focus in the commit dialog into the commit message textview
Modified Paths:
--------------
trunk/geanyvc/geanyvc.c
Modified: trunk/geanyvc/geanyvc.c
===================================================================
--- trunk/geanyvc/geanyvc.c 2008-08-08 18:10:53 UTC (rev 140)
+++ trunk/geanyvc/geanyvc.c 2008-08-13 19:02:32 UTC (rev 141)
@@ -1369,6 +1369,9 @@
}
#endif
+ /* put the input focus to the commit message text view */
+ gtk_widget_grab_focus(messageView);
+
result = gtk_dialog_run(GTK_DIALOG(commit));
if (result == GTK_RESPONSE_APPLY)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 139
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=139&view=rev
Author: ntrel
Date: 2008-08-07 12:41:15 +0000 (Thu, 07 Aug 2008)
Log Message:
-----------
Use $(mkdir_p) instead of $(MKDIR_P) in Makefile, so it works with
automake <= 1.96.
Modified Paths:
--------------
trunk/geanylua/ChangeLog
trunk/geanylua/Makefile.am
Modified: trunk/geanylua/ChangeLog
===================================================================
--- trunk/geanylua/ChangeLog 2008-08-03 19:04:05 UTC (rev 138)
+++ trunk/geanylua/ChangeLog 2008-08-07 12:41:15 UTC (rev 139)
@@ -1,3 +1,7 @@
+August 7, 2008 (ntrel)
+ Use $(mkdir_p) instead of $(MKDIR_P) in Makefile, so it works with
+ automake <= 1.96.
+
July 17, 2008 (ntrel)
Fix use of old app macro.
Fix segfault in last commit in glspi_init() (oops).
Modified: trunk/geanylua/Makefile.am
===================================================================
--- trunk/geanylua/Makefile.am 2008-08-03 19:04:05 UTC (rev 138)
+++ trunk/geanylua/Makefile.am 2008-08-07 12:41:15 UTC (rev 139)
@@ -77,26 +77,26 @@
install-library: .libs/$(LIBRARY_FILENAME)
- $(MKDIR_P) $(DATA_DEST_DIR)
+ $(mkdir_p) $(DATA_DEST_DIR)
$(INSTALL) $< $(DATA_DEST_DIR)
install-plugin: .libs/$(PLUGIN_FILENAME)
- $(MKDIR_P) $(PLUGIN_DEST_DIR)
+ $(mkdir_p) $(PLUGIN_DEST_DIR)
$(INSTALL) $< $(PLUGIN_DEST_DIR)
install-scripts:
- $(MKDIR_P) $(DATA_DEST_DIR)/examples
+ $(mkdir_p) $(DATA_DEST_DIR)/examples
DIRS=`find examples -maxdepth 1 -mindepth 1 -type d -not -name .svn`; \
for DIR in $$DIRS; do \
- $(MKDIR_P) $(DATA_DEST_DIR)/$$DIR; \
+ $(mkdir_p) $(DATA_DEST_DIR)/$$DIR; \
cp $$DIR/*.lua $(DATA_DEST_DIR)/$$DIR; \
done
install-docs:
- $(MKDIR_P) $(DOC_DEST_DIR)
+ $(mkdir_p) $(DOC_DEST_DIR)
cp ./docs/*.html $(DOC_DEST_DIR)/.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 138
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=138&view=rev
Author: eht16
Date: 2008-08-03 19:04:05 +0000 (Sun, 03 Aug 2008)
Log Message:
-----------
Oops, this code shouldn't be commented out.
Modified Paths:
--------------
trunk/spellcheck/src/spellcheck.c
Modified: trunk/spellcheck/src/spellcheck.c
===================================================================
--- trunk/spellcheck/src/spellcheck.c 2008-08-03 18:55:54 UTC (rev 137)
+++ trunk/spellcheck/src/spellcheck.c 2008-08-03 19:04:05 UTC (rev 138)
@@ -773,14 +773,14 @@
gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 3);
combo = gtk_combo_box_new_text();
-/*
+
for (i = 0; i < sc->dicts->len; i++)
{
gtk_combo_box_append_text(GTK_COMBO_BOX(combo), g_ptr_array_index(sc->dicts, i));
if (p_utils->str_equal(g_ptr_array_index(sc->dicts, i), sc->default_language))
gtk_combo_box_set_active(GTK_COMBO_BOX(combo), i);
- }*/
+ }
/* if the default language couldn't be selected, select the first available language */
if (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)) == -1)
gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.