[nautilus-sendto/gnome-2-32] Remove never_unload from the plugin struct



commit 4472ab5cf5643eaf83398df61670c9a79429d42e
Author: Bastien Nocera <hadess hadess net>
Date:   Wed Jun 9 18:18:15 2010 +0100

    Remove never_unload from the plugin struct
    
    Seeing as we never want to unload them now.

 src/nautilus-sendto-plugin.h                      |    4 +---
 src/plugins/evolution/evolution.c                 |    1 -
 src/plugins/gajim/gajim.c                         |    1 -
 src/plugins/nautilus-burn/nautilus-burn.c         |    1 -
 src/plugins/pidgin/pidgin.c                       |    1 -
 src/plugins/removable-devices/removable-devices.c |    1 -
 src/plugins/upnp/upnp.c                           |    1 -
 7 files changed, 1 insertions(+), 9 deletions(-)
---
diff --git a/src/nautilus-sendto-plugin.h b/src/nautilus-sendto-plugin.h
index 216f051..14fb7f5 100644
--- a/src/nautilus-sendto-plugin.h
+++ b/src/nautilus-sendto-plugin.h
@@ -61,7 +61,6 @@ typedef enum {
  * @id: A unique ID representing the plugin
  * @description: The label used in the plugin selection drop-down
  * @gettext_package: The domain to use to translate the description, %NULL if the plugin is part of nautilus-sendto
- * @never_unload: Whether to unload the plugin on exit. Enable this if your plugin registers a new #GType
  * @capabilities: a bitmask of #NstPluginCapabilities
  * @init: Check for dependencies, and return %FALSE if dependencies such as programs are missing.
  * @get_contacts_widget: Return the contact widget, the widget to select the destination of the files
@@ -71,13 +70,12 @@ typedef enum {
  *
  * A structure representing a nautilus-sendto plugin. You should also call NST_INIT_PLUGIN() on the plugin structure to export it.
  **/
-struct _NstPluginInfo 
+struct _NstPluginInfo
 {
 	gchar                             *icon;
 	gchar                             *id;
 	gchar                             *description;
 	gchar                             *gettext_package;
-	gboolean                           never_unload;
 	NstPluginCapabilities              capabilities;
 	gboolean (*init)                  (NstPlugin *plugin);
 	GtkWidget* (*get_contacts_widget) (NstPlugin *plugin);
diff --git a/src/plugins/evolution/evolution.c b/src/plugins/evolution/evolution.c
index 8e1dd0c..7feb305 100644
--- a/src/plugins/evolution/evolution.c
+++ b/src/plugins/evolution/evolution.c
@@ -377,7 +377,6 @@ NstPluginInfo plugin_info = {
 	"evolution",
 	N_("Email"),
 	NULL,
-	FALSE,
 	NAUTILUS_CAPS_NONE,
 	init,
 	get_contacts_widget,
diff --git a/src/plugins/gajim/gajim.c b/src/plugins/gajim/gajim.c
index 1943b3d..088c69b 100644
--- a/src/plugins/gajim/gajim.c
+++ b/src/plugins/gajim/gajim.c
@@ -504,7 +504,6 @@ NstPluginInfo plugin_info = {
 	"gajim",
 	N_("Instant Message (Gajim)"),
 	NULL,
-	TRUE,
 	NAUTILUS_CAPS_NONE,
 	init,
 	get_contacts_widget,
diff --git a/src/plugins/nautilus-burn/nautilus-burn.c b/src/plugins/nautilus-burn/nautilus-burn.c
index bdc80c1..cdaa09e 100644
--- a/src/plugins/nautilus-burn/nautilus-burn.c
+++ b/src/plugins/nautilus-burn/nautilus-burn.c
@@ -177,7 +177,6 @@ NstPluginInfo plugin_info = {
 	"nautilus-burn",
 	N_("CD/DVD Creator"),
 	NULL,
-	FALSE,
 	NAUTILUS_CAPS_SEND_DIRECTORIES,
 	init,
 	get_contacts_widget,
diff --git a/src/plugins/pidgin/pidgin.c b/src/plugins/pidgin/pidgin.c
index 319fdbd..5d9b52e 100644
--- a/src/plugins/pidgin/pidgin.c
+++ b/src/plugins/pidgin/pidgin.c
@@ -463,7 +463,6 @@ NstPluginInfo plugin_info = {
 	"pidgin",
 	N_("Instant Message (Pidgin)"),
 	NULL,
-	TRUE,
 	NAUTILUS_CAPS_NONE,
 	init,
 	get_contacts_widget,
diff --git a/src/plugins/removable-devices/removable-devices.c b/src/plugins/removable-devices/removable-devices.c
index c223328..68022c4 100644
--- a/src/plugins/removable-devices/removable-devices.c
+++ b/src/plugins/removable-devices/removable-devices.c
@@ -247,7 +247,6 @@ NstPluginInfo plugin_info = {
 	"folder-remote",
 	N_("Removable disks and shares"),
 	NULL,
-	FALSE,
 	NAUTILUS_CAPS_SEND_DIRECTORIES,
 	init,
 	get_contacts_widget,
diff --git a/src/plugins/upnp/upnp.c b/src/plugins/upnp/upnp.c
index da5669e..5d2448e 100644
--- a/src/plugins/upnp/upnp.c
+++ b/src/plugins/upnp/upnp.c
@@ -308,7 +308,6 @@ NstPluginInfo plugin_info = {
 	"upnp",
 	N_("UPnP Media Server"),
 	NULL,
-	FALSE,
 	NAUTILUS_CAPS_NONE,
 	init,
 	get_contacts_widget,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]