From 06c997916c956c78366dc71f835b3150fedb1b3c Mon Sep 17 00:00:00 2001 From: Tobias Hunger <tobias.hunger@digia.com> Date: Tue, 26 Mar 2013 16:35:18 +0100 Subject: [PATCH] WelcomePage: Remove private class It is not used and we do not need to care about binary compatibility issues. Change-Id: I6fe9edc58313eea2061be94b7928d643bd6281f8 Reviewed-by: Eike Ziller <eike.ziller@digia.com> --- src/libs/utils/iwelcomepage.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libs/utils/iwelcomepage.h b/src/libs/utils/iwelcomepage.h index 5b4cae0036c..d05e8b95208 100644 --- a/src/libs/utils/iwelcomepage.h +++ b/src/libs/utils/iwelcomepage.h @@ -39,8 +39,6 @@ QT_FORWARD_DECLARE_CLASS(QDeclarativeEngine) namespace Utils { -class IWelcomePagePrivate; - class QTCREATOR_UTILS_EXPORT IWelcomePage : public QObject { Q_OBJECT @@ -68,10 +66,6 @@ public: virtual void facilitateQml(QDeclarativeEngine *) {} virtual bool hasSearchBar() const { return false; } virtual Id id() const = 0; - -private: - // not used atm - IWelcomePagePrivate *d; }; } -- GitLab