]> git.0d.be Git - empathy.git/commitdiff
Add empathy_linking_dialog_get_individual_linker()
authorPhilip Withnall <philip.withnall@collabora.co.uk>
Wed, 1 Sep 2010 17:29:43 +0000 (18:29 +0100)
committerPhilip Withnall <philip.withnall@collabora.co.uk>
Thu, 2 Sep 2010 10:16:24 +0000 (11:16 +0100)
Helps: bgo#628133

libempathy-gtk/empathy-linking-dialog.c
libempathy-gtk/empathy-linking-dialog.h

index 6d76ea1deba4157fd0fc859031ee7297c85c10e1..804884861ead52824f61ac93b552c7486d77c5dc 100644 (file)
@@ -196,3 +196,11 @@ empathy_linking_dialog_show (FolksIndividual *individual,
 
   return linking_dialog;
 }
+
+EmpathyIndividualLinker *
+empathy_linking_dialog_get_individual_linker (EmpathyLinkingDialog *self)
+{
+  g_return_val_if_fail (EMPATHY_IS_LINKING_DIALOG (self), NULL);
+
+  return GET_PRIV (self)->linker;
+}
index 912a3ce4df90a6a6b7d5e0931b0725350de4589b..fb47641ca4587268977fc475e73b1fb28c888a07 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <folks/folks.h>
 
+#include "empathy-individual-linker.h"
+
 G_BEGIN_DECLS
 
 #define EMPATHY_TYPE_LINKING_DIALOG (empathy_linking_dialog_get_type ())
@@ -56,6 +58,9 @@ GType empathy_linking_dialog_get_type (void) G_GNUC_CONST;
 GtkWidget * empathy_linking_dialog_show (FolksIndividual *individual,
     GtkWindow *parent);
 
+EmpathyIndividualLinker * empathy_linking_dialog_get_individual_linker (
+    EmpathyLinkingDialog *self);
+
 G_END_DECLS
 
 #endif /*  __EMPATHY_LINKING_DIALOG_H__ */