summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/appoutputpane.h
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2016-01-29 16:38:37 +0200
committerOrgad Shaneh <orgads@gmail.com>2016-02-01 15:51:34 +0000
commit15f8bb07ed70502c320a0ffe167694bac9734a14 (patch)
tree74db1d0c400835fd539a7697453623650d7e36b2 /src/plugins/projectexplorer/appoutputpane.h
parentdb8b9f94631a0e1637af090d31a5832656ba9f2a (diff)
downloadqt-creator-15f8bb07ed70502c320a0ffe167694bac9734a14.tar.gz
ProjectExplorer: Use Qt5-style connects
The heavy lifting was done by clazy. Change-Id: I619db09a79760186b72e7662490ed1205155c1a7 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/appoutputpane.h')
-rw-r--r--src/plugins/projectexplorer/appoutputpane.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/appoutputpane.h b/src/plugins/projectexplorer/appoutputpane.h
index bc73356139..bb9b2c45e2 100644
--- a/src/plugins/projectexplorer/appoutputpane.h
+++ b/src/plugins/projectexplorer/appoutputpane.h
@@ -101,11 +101,10 @@ public slots:
void appendMessage(ProjectExplorer::RunControl *rc, const QString &out,
Utils::OutputFormat format);
-private slots:
+private:
void reRunRunControl();
void stopRunControl();
void attachToRunControl();
- bool closeTab(int index);
void tabChanged(int);
void contextMenuRequested(const QPoint &pos, int index);
void slotRunControlStarted();
@@ -114,12 +113,11 @@ private slots:
void aboutToUnloadSession();
void updateFromSettings();
- void enableButtons();
+ void enableDefaultButtons();
void zoomIn();
void zoomOut();
-private:
void enableButtons(const RunControl *rc, bool isRunning);
struct RunControlTab {
@@ -133,7 +131,7 @@ private:
};
bool isRunning() const;
- bool closeTab(int index, CloseTabMode cm);
+ bool closeTab(int index, CloseTabMode cm = CloseTabWithPrompt);
bool optionallyPromptToStop(RunControl *runControl);
int indexOf(const RunControl *) const;