Revision: 2144
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2144&view=rev
Author: frlan
Date: 2011-08-15 06:54:03 +0000 (Mon, 15 Aug 2011)
Log Message:
-----------
Tableconvert: Fix a little typo
Modified Paths:
--------------
trunk/geany-plugins/tableconvert/src/tableconvert.c
Modified: trunk/geany-plugins/tableconvert/src/tableconvert.c
===================================================================
--- trunk/geany-plugins/tableconvert/src/tableconvert.c 2011-08-14 15:40:59 UTC (rev 2143)
+++ trunk/geany-plugins/tableconvert/src/tableconvert.c 2011-08-15 06:54:03 UTC (rev 2144)
@@ -163,7 +163,7 @@
/* OK. Something went not as expected.
* We did have a selection but cannot parse it into rows.
* Aborting */
- g_warning(_("Something went went wrong on parsing selection. Aborting"));
+ g_warning(_("Something went wrong on parsing selection. Aborting"));
return;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2141
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2141&view=rev
Author: alvesh88
Date: 2011-08-14 11:55:22 +0000 (Sun, 14 Aug 2011)
Log Message:
-----------
changed Makefile.am to work with renamed aux.c
Modified Paths:
--------------
trunk/geany-plugins/geanypg/src/Makefile.am
Modified: trunk/geany-plugins/geanypg/src/Makefile.am
===================================================================
--- trunk/geany-plugins/geanypg/src/Makefile.am 2011-08-14 11:51:47 UTC (rev 2140)
+++ trunk/geany-plugins/geanypg/src/Makefile.am 2011-08-14 11:55:22 UTC (rev 2141)
@@ -7,7 +7,7 @@
endif
geanypg_la_SOURCES = \
- aux.c \
+ helper_functions.c \
encrypt_cb.c \
key_selection_dialog.c \
sign_cb.c \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2138
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2138&view=rev
Author: eht16
Date: 2011-08-14 10:03:52 +0000 (Sun, 14 Aug 2011)
Log Message:
-----------
Move include of config.h to the top
Modified Paths:
--------------
trunk/geany-plugins/addons/src/addons.c
Modified: trunk/geany-plugins/addons/src/addons.c
===================================================================
--- trunk/geany-plugins/addons/src/addons.c 2011-08-13 22:15:21 UTC (rev 2137)
+++ trunk/geany-plugins/addons/src/addons.c 2011-08-14 10:03:52 UTC (rev 2138)
@@ -22,6 +22,10 @@
*/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include "geanyplugin.h"
#include "addons.h"
@@ -34,9 +38,6 @@
#include "ao_tasks.h"
#include "ao_xmltagging.h"
-#ifdef HAVE_CONFIG_H
-# include "config.h" /* for the gettext domain */
-#endif
GeanyPlugin *geany_plugin;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.