~ubuntu-branches/ubuntu/trusty/adept/trusty

« back to all changes in this revision

Viewing changes to adept/debconfgui.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-05-03 21:54:12 UTC
  • mfrom: (78.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20120503215412-alxr7j1ltrm4o6cs
Tags: 3.0~beta7.2+qa2
* QA upload.
* Fix build failure with GCC 4.7. Closes: #667095, #655512.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
 
88
88
public Q_SLOTS:
89
89
    void selectionChanged() {
90
 
        emit changed( selection() );
 
90
        Q_EMIT changed( selection() );
91
91
    }
92
92
Q_SIGNALS:
93
93
    void changed( const QString & );
263
263
        m_next->setEnabled( true );
264
264
        m_back->setEnabled( backupEnabled );
265
265
        QTimer::singleShot( 0, this, SLOT( fixupScrollArea() ) );
266
 
        emit activated();
 
266
        Q_EMIT activated();
267
267
    }
268
268
 
269
269
    virtual void done() {
270
 
        emit deactivated();
 
270
        Q_EMIT deactivated();
271
271
    }
272
272
 
273
273
    virtual void cleanup() {