~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to server/src/storage/itemretrievaljob.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-11 17:38:58 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20131111173858-kltz6s4ebjishfej
Tags: 1.10.80-0ubuntu1
* New upstream release
 - Update install files
 - Update disable_dbus_requiring_tests.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
  Q_OBJECT
33
33
  public:
34
 
    ItemRetrievalJob( ItemRetrievalRequest *req, QObject *parent ) : QObject( parent ), m_request( req ), m_active( false ), m_interface( 0 ), m_oldMethodCalled( false ) {}
 
34
    ItemRetrievalJob( ItemRetrievalRequest *req, QObject *parent )
 
35
      : QObject( parent )
 
36
      , m_request( req )
 
37
      , m_active( false )
 
38
      , m_interface( 0 )
 
39
      , m_oldMethodCalled( false )
 
40
    {
 
41
    }
35
42
    ~ItemRetrievalJob();
36
 
    void start( QDBusAbstractInterface* interface );
 
43
    void start( QDBusAbstractInterface *interface );
37
44
    void kill();
38
45
 
39
46
  Q_SIGNALS:
41
48
 
42
49
  private Q_SLOTS:
43
50
    void callFinished( bool returnValue );
44
 
    void callFinished( const QString& errorMsg );
 
51
    void callFinished( const QString &errorMsg );
45
52
    void callFailed( const QDBusError &error );
46
53
 
47
54
  private: