aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2008-11-22 00:20:00 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-11-22 00:20:00 +0800
commitc874dc0493070088fac7b22f35f28107283b33cd (patch)
tree8adebf1dcc59101edab1cf510bb483010aa7f30b /libempathy-gtk
parent1df27a669a4650a50f6b924b47155a512e789ae7 (diff)
downloadgsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar.gz
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar.bz2
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar.lz
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar.xz
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.tar.zst
gsoc2013-empathy-c874dc0493070088fac7b22f35f28107283b33cd.zip
Moved empathy_send_file to EmpathyDispatcher and renamed it. (Jonny Lamb)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=1835
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-ft-manager.c3
-rw-r--r--libempathy-gtk/empathy-ui-utils.c3
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-ft-manager.c b/libempathy-gtk/empathy-ft-manager.c
index 3e798c380..5814d14fe 100644
--- a/libempathy-gtk/empathy-ft-manager.c
+++ b/libempathy-gtk/empathy-ft-manager.c
@@ -50,8 +50,7 @@
/**
* SECTION:empathy-ft-manager
* @short_description: File transfer dialog
- * @see_also: #EmpathyTpFile, empathy_send_file(),
- * empathy_send_file_from_stream()
+ * @see_also: #EmpathyTpFile, empathy_dispatcher_send_file()
* @include: libempthy-gtk/empathy-ft-manager.h
*
* The #EmpathyFTManager object represents the file transfer dialog,
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index 388f4c716..20eab6098 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -47,6 +47,7 @@
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
#include <libempathy/empathy-debug.h>
#include <libempathy/empathy-utils.h>
+#include <libempathy/empathy-dispatcher.h>
struct SizeData {
gint width;
@@ -1472,7 +1473,7 @@ file_manager_send_file_response_cb (GtkDialog *widget,
gfile = g_file_new_for_uri (uri);
DEBUG ("\t%s", uri);
- empathy_send_file (contact, gfile);
+ empathy_dispatcher_send_file (contact, gfile);
manager = gtk_recent_manager_get_default ();
gtk_recent_manager_add_item (manager, uri);