forked from qt-creator/qt-creator
EmacsKeys: Use Qt5-style connects
The heavy lifting was done by clazy. Change-Id: Ib5fda624ef6d776fd238e15b562c9fc0dd6cab58 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
a9f73d079a
commit
38a13f09c2
@@ -58,7 +58,7 @@ public:
|
||||
void extensionsInitialized();
|
||||
ShutdownFlag aboutToShutdown();
|
||||
|
||||
private slots:
|
||||
private:
|
||||
void editorAboutToClose(Core::IEditor *editor);
|
||||
void currentEditorChanged(Core::IEditor *editor);
|
||||
|
||||
@@ -87,9 +87,8 @@ private slots:
|
||||
void scrollHalfDown(); // C-v
|
||||
void scrollHalfUp(); // M-v
|
||||
|
||||
private:
|
||||
QAction *registerAction(Core::Id id, const char *slot,
|
||||
const QString &title);
|
||||
QAction *registerAction(Core::Id id, void (EmacsKeysPlugin::*callback)(),
|
||||
const QString &title);
|
||||
void genericGoto(QTextCursor::MoveOperation op, bool abortAssist = true);
|
||||
void genericVScroll(int direction);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user