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>
This commit is contained in:
Tobias Hunger
2013-03-26 16:35:18 +01:00
parent 1d36076758
commit 06c997916c

View File

@@ -39,8 +39,6 @@ QT_FORWARD_DECLARE_CLASS(QDeclarativeEngine)
namespace Utils { namespace Utils {
class IWelcomePagePrivate;
class QTCREATOR_UTILS_EXPORT IWelcomePage : public QObject class QTCREATOR_UTILS_EXPORT IWelcomePage : public QObject
{ {
Q_OBJECT Q_OBJECT
@@ -68,10 +66,6 @@ public:
virtual void facilitateQml(QDeclarativeEngine *) {} virtual void facilitateQml(QDeclarativeEngine *) {}
virtual bool hasSearchBar() const { return false; } virtual bool hasSearchBar() const { return false; }
virtual Id id() const = 0; virtual Id id() const = 0;
private:
// not used atm
IWelcomePagePrivate *d;
}; };
} }