forked from qt-creator/qt-creator
DiffEditor: De-slot
Change-Id: I132da3f0475ced470ffd7c4cace60825b9dec44f Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
9f1a9078c2
commit
3ec5a18990
@@ -56,22 +56,23 @@ public:
|
||||
bool initialize(const QStringList &arguments, QString *errorMessage = 0);
|
||||
void extensionsInitialized();
|
||||
|
||||
private slots:
|
||||
private:
|
||||
void updateDiffCurrentFileAction();
|
||||
void updateDiffOpenFilesAction();
|
||||
void diffCurrentFile();
|
||||
void diffOpenFiles();
|
||||
void diffExternalFiles();
|
||||
|
||||
QAction *m_diffCurrentFileAction = nullptr;
|
||||
QAction *m_diffOpenFilesAction = nullptr;
|
||||
|
||||
#ifdef WITH_TESTS
|
||||
private slots:
|
||||
void testMakePatch_data();
|
||||
void testMakePatch();
|
||||
void testReadPatch_data();
|
||||
void testReadPatch();
|
||||
#endif // WITH_TESTS
|
||||
private:
|
||||
QAction *m_diffCurrentFileAction = nullptr;
|
||||
QAction *m_diffOpenFilesAction = nullptr;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user