* src/common/plugin.[ch]
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Fri, 18 Jul 2003 18:44:54 +0000 (18:44 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Fri, 18 Jul 2003 18:44:54 +0000 (18:44 +0000)
const correctness

ChangeLog.claws
configure.ac
src/common/plugin.c
src/common/plugin.h

index 589067e2f1bbf3d7041ae61df514b2eccca384b6..9e93a9b1f1df807c5a0f8929bda1d56890e57257 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-18 [alfons]    0.9.3claws24
+       
+       * src/common/plugin.[ch]
+               const correctness
+
 2003-07-18 [christoph] 0.9.3claws23
 
        * src/common/hooks.c
index 68ace396432701f54aec7d29f8504115c1ebc56a..4b3b15168c612a0c1936278b2ea2a1fa69105270 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=3
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws23
+EXTRA_VERSION=claws24
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 77ec9a31a879eadf9f5db780f5486ddca8156bd4..887726cb13b2dda5fc116c374c142485e89c0267 100644 (file)
@@ -153,7 +153,7 @@ void plugin_unload(Plugin *plugin)
        g_free(plugin);
 }
 
-void plugin_load_all(gchar *type)
+void plugin_load_all(const gchar *type)
 {
        gchar *rcpath;
        gchar buf[BUFFSIZE];
@@ -186,7 +186,7 @@ void plugin_load_all(gchar *type)
        g_free(rcpath);
 }
 
-void plugin_unload_all(gchar *type)
+void plugin_unload_all(const gchar *type)
 {
        GSList *list, *cur;
 
index 0b1d636696d3378909fa44e06d535e3ebd3d572a..eb3606dd9e74575651bf445a8d00ac3f6862741f 100644 (file)
@@ -34,8 +34,8 @@ const gchar *plugin_desc      (void);
 gint plugin_load               (const gchar     *filename,
                                 gchar          **error);
 void plugin_unload             (Plugin          *plugin);
-void plugin_load_all           (gchar          *type);
-void plugin_unload_all         (gchar          *type);
+void plugin_load_all           (const gchar     *type);
+void plugin_unload_all         (const gchar     *type);
 void plugin_save_list          (void);
 
 GSList *plugin_get_list                (void);