diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-02 01:29:43 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-02 18:16:24 +0800 |
commit | f32eb6e690caf29430e14fddb410491732d89800 (patch) | |
tree | 6c92493a94a44ea484791f9c23d11c32ac113c69 /libempathy-gtk/empathy-linking-dialog.c | |
parent | 0cdd19e18818fb096db954d48ae8770d3458908d (diff) | |
download | gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar.gz gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar.bz2 gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar.lz gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar.xz gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.tar.zst gsoc2013-empathy-f32eb6e690caf29430e14fddb410491732d89800.zip |
Add empathy_linking_dialog_get_individual_linker()
Helps: bgo#628133
Diffstat (limited to 'libempathy-gtk/empathy-linking-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-linking-dialog.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-linking-dialog.c b/libempathy-gtk/empathy-linking-dialog.c index 6d76ea1de..804884861 100644 --- a/libempathy-gtk/empathy-linking-dialog.c +++ b/libempathy-gtk/empathy-linking-dialog.c @@ -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; +} |