aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-19 23:32:07 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-04-19 23:32:14 +0800
commit73b78f9eb4e187b5c347225e1ba178f7b5cad7c1 (patch)
treea585aa26e20e56b5678823397adac3c01b2ad57c /libempathy
parent86a3d7231f766c1c157ce84bf2444c396610a4fb (diff)
downloadgsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar.gz
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar.bz2
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar.lz
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar.xz
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.tar.zst
gsoc2013-empathy-73b78f9eb4e187b5c347225e1ba178f7b5cad7c1.zip
remove empathy_dispatch_operation_new_with_wrapper
It's not needed any more.
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-dispatch-operation.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/libempathy/empathy-dispatch-operation.c b/libempathy/empathy-dispatch-operation.c
index 20ebadb83..6120f8e05 100644
--- a/libempathy/empathy-dispatch-operation.c
+++ b/libempathy/empathy-dispatch-operation.c
@@ -495,26 +495,15 @@ EmpathyDispatchOperation *
empathy_dispatch_operation_new (TpConnection *connection, TpChannel *channel,
EmpathyContact *contact, gboolean incoming)
{
- return empathy_dispatch_operation_new_with_wrapper (connection, channel,
- contact, incoming, NULL);
-}
-
-EmpathyDispatchOperation *
-empathy_dispatch_operation_new_with_wrapper (TpConnection *connection,
- TpChannel *channel, EmpathyContact *contact, gboolean incoming,
- GObject *wrapper)
-{
g_return_val_if_fail (connection != NULL, NULL);
g_return_val_if_fail (channel != NULL, NULL);
- return EMPATHY_DISPATCH_OPERATION (
- g_object_new (EMPATHY_TYPE_DISPATCH_OPERATION,
+ return g_object_new (EMPATHY_TYPE_DISPATCH_OPERATION,
"connection", connection,
"channel", channel,
- "channel-wrapper", wrapper,
"contact", contact,
"incoming", incoming,
- NULL));
+ NULL);
}
void