forked from qt-creator/qt-creator
Git: Get rid of SLOTs for createFileAction
Change-Id: Idcdf20c6c9187103cfb6eb3172b3777f5dbe9876 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -108,8 +108,7 @@ private slots:
|
||||
void logProject();
|
||||
void logRepository();
|
||||
void reflogRepository();
|
||||
void undoFileChanges(bool revertStaging = true);
|
||||
void undoUnstagedFileChanges();
|
||||
void undoFileChanges(bool revertStaging);
|
||||
void resetRepository();
|
||||
void startRebase();
|
||||
void startChangeRelatedAction(const Core::Id &id);
|
||||
@@ -161,7 +160,12 @@ private:
|
||||
QAction *createFileAction(Core::ActionContainer *ac,
|
||||
const QString &defaultText, const QString ¶meterText,
|
||||
Core::Id id, const Core::Context &context, bool addToLocator,
|
||||
const char *pluginSlot,
|
||||
const std::function<void()> &callback,
|
||||
const QKeySequence &keys = QKeySequence());
|
||||
QAction *createFileAction(Core::ActionContainer *ac,
|
||||
const QString &defaultText, const QString ¶meterText,
|
||||
Core::Id id, const Core::Context &context, bool addToLocator,
|
||||
void (GitPlugin::*func)(),
|
||||
const QKeySequence &keys = QKeySequence());
|
||||
|
||||
QAction *createProjectAction(Core::ActionContainer *ac,
|
||||
|
||||
Reference in New Issue
Block a user