summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-04-02 15:20:50 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-04-02 16:02:38 +0200
commita5eafbf71527096713b3d08193f2e89306455a9d (patch)
tree00fc773d5d94c64b1515a03a58457f879b9da3a1
parentc71d734d0897a45e82d58ef3d85902a7ac65840f (diff)
downloadqt-creator-a5eafbf71527096713b3d08193f2e89306455a9d.tar.gz
IOutputParser: Remove useless virtual keywords
Change-Id: Iface6b849e2dc5b277a3b214dc373c82df9e4d74 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
-rw-r--r--src/plugins/projectexplorer/gccparser.h2
-rw-r--r--src/plugins/projectexplorer/gnumakeparser.h8
-rw-r--r--src/plugins/projectexplorer/ldparser.h2
-rw-r--r--src/plugins/qt4projectmanager/qmakeparser.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/src/plugins/projectexplorer/gccparser.h b/src/plugins/projectexplorer/gccparser.h
index 7005565e2b..3ede1493da 100644
--- a/src/plugins/projectexplorer/gccparser.h
+++ b/src/plugins/projectexplorer/gccparser.h
@@ -42,7 +42,7 @@ class GccParser : public ProjectExplorer::IOutputParser
public:
GccParser();
- virtual void stdError(const QString &line);
+ void stdError(const QString &line);
private:
QRegExp m_regExp;
diff --git a/src/plugins/projectexplorer/gnumakeparser.h b/src/plugins/projectexplorer/gnumakeparser.h
index f79b2302ef..758f2a6846 100644
--- a/src/plugins/projectexplorer/gnumakeparser.h
+++ b/src/plugins/projectexplorer/gnumakeparser.h
@@ -44,17 +44,17 @@ class PROJECTEXPLORER_EXPORT GnuMakeParser : public ProjectExplorer::IOutputPars
public:
explicit GnuMakeParser();
- virtual void stdOutput(const QString &line);
- virtual void stdError(const QString &line);
+ void stdOutput(const QString &line);
+ void stdError(const QString &line);
- virtual void setWorkingDirectory(const QString &workingDirectory);
+ void setWorkingDirectory(const QString &workingDirectory);
QStringList searchDirectories() const;
bool hasFatalErrors() const;
public slots:
- virtual void taskAdded(const ProjectExplorer::Task &task);
+ void taskAdded(const ProjectExplorer::Task &task);
private:
void addDirectory(const QString &dir);
diff --git a/src/plugins/projectexplorer/ldparser.h b/src/plugins/projectexplorer/ldparser.h
index f8726fc003..e941306231 100644
--- a/src/plugins/projectexplorer/ldparser.h
+++ b/src/plugins/projectexplorer/ldparser.h
@@ -42,7 +42,7 @@ class LdParser : public ProjectExplorer::IOutputParser
public:
LdParser();
- virtual void stdError(const QString &line);
+ void stdError(const QString &line);
private:
QRegExp m_regExpLinker;
diff --git a/src/plugins/qt4projectmanager/qmakeparser.h b/src/plugins/qt4projectmanager/qmakeparser.h
index 6fd3f325e7..8d6fa07a0b 100644
--- a/src/plugins/qt4projectmanager/qmakeparser.h
+++ b/src/plugins/qt4projectmanager/qmakeparser.h
@@ -43,7 +43,7 @@ class QMakeParser : public ProjectExplorer::IOutputParser
public:
QMakeParser();
- virtual void stdError(const QString &line);
+ void stdError(const QString &line);
private:
QRegExp m_error;