forked from qt-creator/qt-creator
QmlJS[|Editor|Tools]: Use Qt5-style connects
The heavy lifting was done by clazy. Change-Id: I56550546b341d486d321329e9a90b9369d56af40 Reviewed-by: Marco Benelli <marco.benelli@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
090c106929
commit
7609e56ee3
@@ -67,7 +67,7 @@ public:
|
||||
FindReferences(QObject *parent = 0);
|
||||
virtual ~FindReferences();
|
||||
|
||||
Q_SIGNALS:
|
||||
signals:
|
||||
void changed();
|
||||
|
||||
public:
|
||||
@@ -77,7 +77,7 @@ public:
|
||||
|
||||
static QList<Usage> findUsageOfType(const QString &fileName, const QString typeName);
|
||||
|
||||
private Q_SLOTS:
|
||||
private:
|
||||
void displayResults(int first, int last);
|
||||
void searchFinished();
|
||||
void cancel();
|
||||
@@ -85,7 +85,6 @@ private Q_SLOTS:
|
||||
void openEditor(const Core::SearchResultItem &item);
|
||||
void onReplaceButtonClicked(const QString &text, const QList<Core::SearchResultItem> &items, bool preserveCase);
|
||||
|
||||
private:
|
||||
QPointer<Core::SearchResult> m_currentSearch;
|
||||
QFutureWatcher<Usage> m_watcher;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user