summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectexplorersettingspage.h
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2012-05-22 11:17:13 +0200
committerEike Ziller <eike.ziller@nokia.com>2012-05-23 10:48:04 +0200
commitf77cd29e54f832cbb72533842acb4dda655540f1 (patch)
treee6557c80b3c1875fb0c7b215919b3fa5bee97d1c /src/plugins/projectexplorer/projectexplorersettingspage.h
parent444445ceb3cef3f406ae6e68ee5c2505de2762cc (diff)
downloadqt-creator-f77cd29e54f832cbb72533842acb4dda655540f1.tar.gz
IOptionsPage: replace virtual fuctions by data members
Change-Id: I8297df85109b67b79f90c33263a5dc7b89efbb60 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectexplorersettingspage.h')
-rw-r--r--src/plugins/projectexplorer/projectexplorersettingspage.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/plugins/projectexplorer/projectexplorersettingspage.h b/src/plugins/projectexplorer/projectexplorersettingspage.h
index d8d9277804..5bcabbdaf9 100644
--- a/src/plugins/projectexplorer/projectexplorersettingspage.h
+++ b/src/plugins/projectexplorer/projectexplorersettingspage.h
@@ -73,19 +73,15 @@ private:
class ProjectExplorerSettingsPage : public Core::IOptionsPage
{
Q_OBJECT
+
public:
ProjectExplorerSettingsPage();
+ ~ProjectExplorerSettingsPage();
- virtual QString id() const;
- virtual QString displayName() const;
- virtual QString category() const;
- virtual QString displayCategory() const;
- virtual QIcon categoryIcon() const;
-
- virtual QWidget *createPage(QWidget *parent);
- virtual void apply();
- virtual void finish();
- virtual bool matches(const QString &s) const;
+ QWidget *createPage(QWidget *parent);
+ void apply();
+ void finish();
+ bool matches(const QString &s) const;
private:
QString m_searchKeywords;