forked from qt-creator/qt-creator
Git: Un-slot private slots
Change-Id: If88d7e1b501daf6f0dfc696cb20e5f1eb4aa83fe Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
74849134f4
commit
1b9b1541d3
@@ -105,12 +105,6 @@ public:
|
||||
public slots:
|
||||
void start();
|
||||
|
||||
private slots:
|
||||
void processError(QProcess::ProcessError);
|
||||
void processFinished(int exitCode, QProcess::ExitStatus);
|
||||
void processReadyReadStandardError();
|
||||
void processReadyReadStandardOutput();
|
||||
|
||||
private:
|
||||
enum State
|
||||
{
|
||||
@@ -119,6 +113,11 @@ private:
|
||||
ErrorState
|
||||
};
|
||||
|
||||
void processError(QProcess::ProcessError);
|
||||
void processFinished(int exitCode, QProcess::ExitStatus);
|
||||
void processReadyReadStandardError();
|
||||
void processReadyReadStandardOutput();
|
||||
|
||||
void handleError(const QString &message);
|
||||
void show();
|
||||
void cherryPick();
|
||||
|
||||
Reference in New Issue
Block a user