~seb128/sync-monitor/synchronization-typo

« back to all changes in this revision

Viewing changes to src/syncevolution-server-proxy.cpp

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2014-02-28 16:39:31 UTC
  • Revision ID: renato.filho@canonical.com-20140228163931-nv26e74uprp37b94
Fixed support for sync only one account.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
    return new SyncEvolutionSessionProxy(reply.value(), this);
83
83
}
84
84
 
85
 
QStringList SyncEvolutionServerProxy::configs() const
 
85
QStringList SyncEvolutionServerProxy::configs(bool templates) const
86
86
{
87
 
    QDBusReply<QStringList> reply = m_iface->call("GetConfigs", false);
 
87
    QDBusReply<QStringList> reply = m_iface->call("GetConfigs", templates);
88
88
    return reply.value();
89
89
}