~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-client-gnome/src/dbus/dbus.c

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2011-04-05 14:14:13 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110405141413-hbwbunfsxpn2rtre
Tags: 0.9.13-1
* New upstream release
  - remove Debian patch (applied upstream)
* Fix watch file
* Remove unnecessary versioned dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
819
819
}
820
820
 
821
821
void
 
822
dbus_attended_transfer (const callable_obj_t *transfer, const callable_obj_t *target)
 
823
{
 
824
    DEBUG("DBUS: Attended tramsfer %s to %s", transfer->_callID, target->_callID);
 
825
 
 
826
    GError *error = NULL;
 
827
    org_sflphone_SFLphone_CallManager_attended_transfer (callManagerProxy, transfer->_callID,
 
828
        target->_callID, &error);
 
829
 
 
830
    if(error) {
 
831
        ERROR("Failed to call transfer() on CallManager: %s",
 
832
              error->message);
 
833
        g_error_free(error);
 
834
    }
 
835
}
 
836
 
 
837
void
822
838
dbus_accept (const callable_obj_t * c)
823
839
{
824
840
#if GTK_CHECK_VERSION(2,10,0)
859
875
void
860
876
dbus_place_call (const callable_obj_t * c)
861
877
{
862
 
    DEBUG ("dbus_place_call %s\n", c->_callID);
863
 
 
864
878
    GError *error = NULL;
865
879
    org_sflphone_SFLphone_CallManager_place_call (callManagerProxy, c->_accountID,
866
880
            c->_callID, c->_peer_number, &error);