changeset 25490:ea62e934c80b

Fix some more mis-identified plugins, like 3b3526a0... References #8448.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 18 Feb 2009 04:31:31 +0000
parents ba717632d0da
children c729cdeb88c8 aaee7cf806d0
files finch/plugins/gntclipboard.c finch/plugins/gntgf.c finch/plugins/grouping.c finch/plugins/lastlog.c libpurple/plugins/autoaccept.c libpurple/plugins/codeinline.c libpurple/plugins/newline.c libpurple/plugins/offlinemsg.c libpurple/protocols/silc10/silc.c pidgin/plugins/convcolors.c pidgin/plugins/markerline.c pidgin/plugins/timestamp.c
diffstat 12 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/finch/plugins/gntclipboard.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/finch/plugins/gntclipboard.c	Wed Feb 18 04:31:31 2009 +0000
@@ -22,7 +22,7 @@
 #include "internal.h"
 #include <glib.h>
 
-#define PLUGIN_STATIC_NAME	"GntClipboard"
+#define PLUGIN_STATIC_NAME	GntClipboard
 
 #ifdef HAVE_X11
 #include <X11/Xlib.h>
--- a/finch/plugins/gntgf.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/finch/plugins/gntgf.c	Wed Feb 18 04:31:31 2009 +0000
@@ -21,7 +21,7 @@
 
 #include "internal.h"
 
-#define PLUGIN_STATIC_NAME	"GntGf"
+#define PLUGIN_STATIC_NAME	GntGf
 
 #define PREFS_PREFIX          "/plugins/gnt/gntgf"
 #define PREFS_EVENT           PREFS_PREFIX "/events"
--- a/finch/plugins/grouping.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/finch/plugins/grouping.c	Wed Feb 18 04:31:31 2009 +0000
@@ -383,6 +383,6 @@
 {
 }
 
-PURPLE_INIT_PLUGIN(ignore, init_plugin, info)
+PURPLE_INIT_PLUGIN(grouping, init_plugin, info)
 
 
--- a/finch/plugins/lastlog.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/finch/plugins/lastlog.c	Wed Feb 18 04:31:31 2009 +0000
@@ -19,7 +19,7 @@
  */
 
 
-#define PLUGIN_STATIC_NAME	"GntLastlog"
+#define PLUGIN_STATIC_NAME	GntLastlog
 
 #include "internal.h"
 
--- a/libpurple/plugins/autoaccept.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/libpurple/plugins/autoaccept.c	Wed Feb 18 04:31:31 2009 +0000
@@ -21,7 +21,7 @@
 
 #define PLUGIN_ID			"core-plugin_pack-autoaccept"
 #define PLUGIN_NAME			N_("Autoaccept")
-#define PLUGIN_STATIC_NAME	"Autoaccept"
+#define PLUGIN_STATIC_NAME	Autoaccept
 #define PLUGIN_SUMMARY		N_("Auto-accept file transfer requests from selected users.")
 #define PLUGIN_DESCRIPTION	N_("Auto-accept file transfer requests from selected users.")
 #define PLUGIN_AUTHOR		"Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
--- a/libpurple/plugins/codeinline.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/libpurple/plugins/codeinline.c	Wed Feb 18 04:31:31 2009 +0000
@@ -95,4 +95,4 @@
  {
  }
 
-PURPLE_INIT_PLUGIN(urlcatcher, init_plugin, info)
+PURPLE_INIT_PLUGIN(codeinline, init_plugin, info)
--- a/libpurple/plugins/newline.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/libpurple/plugins/newline.c	Wed Feb 18 04:31:31 2009 +0000
@@ -133,4 +133,4 @@
 	purple_prefs_add_bool("/plugins/core/newline/chat", TRUE);
 }
 
-PURPLE_INIT_PLUGIN(lastseen, init_plugin, info)
+PURPLE_INIT_PLUGIN(newline, init_plugin, info)
--- a/libpurple/plugins/offlinemsg.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/libpurple/plugins/offlinemsg.c	Wed Feb 18 04:31:31 2009 +0000
@@ -21,7 +21,7 @@
 
 #define PLUGIN_ID			"core-plugin_pack-offlinemsg"
 #define PLUGIN_NAME			N_("Offline Message Emulation")
-#define PLUGIN_STATIC_NAME	"offlinemsg"
+#define PLUGIN_STATIC_NAME	offlinemsg
 #define PLUGIN_SUMMARY		N_("Save messages sent to an offline user as pounce.")
 #define PLUGIN_DESCRIPTION	N_("Save messages sent to an offline user as pounce.")
 #define PLUGIN_AUTHOR		"Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
--- a/libpurple/protocols/silc10/silc.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/libpurple/protocols/silc10/silc.c	Wed Feb 18 04:31:31 2009 +0000
@@ -1956,4 +1956,4 @@
 #endif
 }
 
-PURPLE_INIT_PLUGIN(silc, init_plugin, info);
+PURPLE_INIT_PLUGIN(silc10, init_plugin, info);
--- a/pidgin/plugins/convcolors.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/pidgin/plugins/convcolors.c	Wed Feb 18 04:31:31 2009 +0000
@@ -21,7 +21,7 @@
 
 #define PLUGIN_ID			"gtk-plugin_pack-convcolors"
 #define PLUGIN_NAME			N_("Conversation Colors")
-#define PLUGIN_STATIC_NAME	"Conversation Colors"
+#define PLUGIN_STATIC_NAME	ConversationColors
 #define PLUGIN_SUMMARY		N_("Customize colors in the conversation window")
 #define PLUGIN_DESCRIPTION	N_("Customize colors in the conversation window")
 #define PLUGIN_AUTHOR		"Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
--- a/pidgin/plugins/markerline.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/pidgin/plugins/markerline.c	Wed Feb 18 04:31:31 2009 +0000
@@ -21,7 +21,7 @@
 
 #define PLUGIN_ID			"gtk-plugin_pack-markerline"
 #define PLUGIN_NAME			N_("Markerline")
-#define PLUGIN_STATIC_NAME	"Markerline"
+#define PLUGIN_STATIC_NAME	Markerline
 #define PLUGIN_SUMMARY		N_("Draw a line to indicate new messages in a conversation.")
 #define PLUGIN_DESCRIPTION	N_("Draw a line to indicate new messages in a conversation.")
 #define PLUGIN_AUTHOR		"Sadrul H Chowdhury <sadrul@users.sourceforge.net>"
--- a/pidgin/plugins/timestamp.c	Wed Feb 18 03:47:52 2009 +0000
+++ b/pidgin/plugins/timestamp.c	Wed Feb 18 04:31:31 2009 +0000
@@ -229,4 +229,4 @@
 	purple_prefs_add_int("/plugins/gtk/timestamp/interval", interval * 1000);
 }
 
-PURPLE_INIT_PLUGIN(interval, init_plugin, info)
+PURPLE_INIT_PLUGIN(timestamp, init_plugin, info)