diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-07-01 01:12:23 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-07-01 01:12:23 (GMT) |
commit | 91506374f23e3ba533396ec10aae285e4cd7caf4 (patch) | |
tree | a2cdcf1c3e6f492d92ac5f7755b883774c0d6619 /src/declarative/graphicsitems/qdeclarativerectangle_p.h | |
parent | 95a6da90926d1887fc04a95df8d887b4872ccae8 (diff) | |
download | Qt-91506374f23e3ba533396ec10aae285e4cd7caf4.zip Qt-91506374f23e3ba533396ec10aae285e4cd7caf4.tar.gz Qt-91506374f23e3ba533396ec10aae285e4cd7caf4.tar.bz2 |
Don't export declarative private classes
Those required by creator are still exported. Everything else is
no longer exported.
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativerectangle_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativerectangle_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativerectangle_p.h b/src/declarative/graphicsitems/qdeclarativerectangle_p.h index 7272962..ecc3fbf 100644 --- a/src/declarative/graphicsitems/qdeclarativerectangle_p.h +++ b/src/declarative/graphicsitems/qdeclarativerectangle_p.h @@ -68,7 +68,7 @@ public: QColor color() const { return _color; } void setColor(const QColor &c); - bool isValid() { return _valid; }; + bool isValid() { return _valid; } Q_SIGNALS: void penChanged(); @@ -79,7 +79,7 @@ private: bool _valid; }; -class Q_DECLARATIVE_EXPORT QDeclarativeGradientStop : public QObject +class Q_AUTOTEST_EXPORT QDeclarativeGradientStop : public QObject { Q_OBJECT @@ -103,7 +103,7 @@ private: QColor m_color; }; -class Q_DECLARATIVE_EXPORT QDeclarativeGradient : public QObject +class Q_AUTOTEST_EXPORT QDeclarativeGradient : public QObject { Q_OBJECT |