[vinagre/gnome-3-8] Revert "Add recognize_file() API to VinagreProtocol interface"



commit 28a2af5f0aa4eb674e02b1d4072649fac474ac8f
Author: David King <amigadave amigadave com>
Date:   Tue Jul 23 15:26:01 2013 +0100

    Revert "Add recognize_file() API to VinagreProtocol interface"
    
    This reverts commit bbde17a11841710b989901189f9a2556317b3f06.

 vinagre/vinagre-protocol.c |   26 --------------------------
 vinagre/vinagre-protocol.h |    4 ----
 2 files changed, 0 insertions(+), 30 deletions(-)
---
diff --git a/vinagre/vinagre-protocol.c b/vinagre/vinagre-protocol.c
index 11ec4fd..3040d8c 100644
--- a/vinagre/vinagre-protocol.c
+++ b/vinagre/vinagre-protocol.c
@@ -75,13 +75,6 @@ default_new_connection_from_file (VinagreProtocol *protocol,
   return NULL;
 }
 
-static gboolean
-default_recognize_file (VinagreProtocol *protocol,
-                        GFile           *file)
-{
-  return FALSE;
-}
-
 static GtkWidget *
 default_get_connect_widget (VinagreProtocol   *protocol,
                            VinagreConnection *initial_settings)
@@ -115,7 +108,6 @@ vinagre_protocol_default_init (VinagreProtocolInterface *iface)
   iface->new_tab = default_new_tab;
   iface->new_connection = default_new_connection;
   iface->new_connection_from_file = default_new_connection_from_file;
-  iface->recognize_file = default_recognize_file;
   iface->get_connect_widget = default_get_connect_widget;
   iface->parse_mdns_dialog = default_parse_mdns_dialog;
   iface->get_icon_name = dummy;
@@ -316,24 +308,6 @@ vinagre_protocol_new_connection_from_file (VinagreProtocol *protocol,
   return NULL;
 }
 
-gboolean
-vinagre_protocol_recognize_file (VinagreProtocol *protocol,
-                                 GFile           *file)
-{
-  VinagreProtocolInterface *iface;
-
-  g_return_val_if_fail (VINAGRE_IS_PROTOCOL (protocol), FALSE);
-
-  iface = VINAGRE_PROTOCOL_GET_IFACE (protocol);
-
-  if (iface->recognize_file != NULL)
-    {
-      return iface->recognize_file (protocol, file);
-    }
-
-  return FALSE;
-}
-
 /**
  * vinagre_protocol_get_connect_widget:
  *
diff --git a/vinagre/vinagre-protocol.h b/vinagre/vinagre-protocol.h
index 933cceb..cdf2eb4 100644
--- a/vinagre/vinagre-protocol.h
+++ b/vinagre/vinagre-protocol.h
@@ -48,8 +48,6 @@ struct _VinagreProtocolInterface
                                                         const gchar     *data,
                                                         gboolean         use_bookmarks,
                                                         gchar          **error_msg);
-  gboolean              (*recognize_file)               (VinagreProtocol *protocol,
-                                                         GFile           *file);
   const gchar          *(*get_mdns_service)            (VinagreProtocol *protocol);
   GtkWidget            *(*new_tab)                     (VinagreProtocol   *protocol,
                                                         VinagreConnection *conn,
@@ -82,8 +80,6 @@ VinagreConnection *   vinagre_protocol_new_connection_from_file (VinagreProtocol *
                                                                   const gchar     *data,
                                                                   gboolean         use_bookmarks,
                                                                   gchar           **error_msg);
-gboolean                vinagre_protocol_recognize_file           (VinagreProtocol *protocol,
-                                                                   GFile           *file);
 const gchar *          vinagre_protocol_get_mdns_service         (VinagreProtocol *protocol);
 
 GtkWidget *            vinagre_protocol_new_tab                  (VinagreProtocol   *protocol,


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