summaryrefslogtreecommitdiff
path: root/src/libs/utils/crumblepath.h
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-09-16 15:00:41 +0200
committerhjk <qthjk@ovi.com>2011-09-19 08:56:44 +0200
commit58cb19e55e92f5386458adbf54ff64adbcb85ed3 (patch)
tree17286cf1a6ddd2a880299caefb3edd563fafbbb4 /src/libs/utils/crumblepath.h
parentdbe1653775f19fc35cd19f50294951711a713f58 (diff)
downloadqt-creator-58cb19e55e92f5386458adbf54ff64adbcb85ed3.tar.gz
all: less QScopedPointer
Change-Id: I536bdb4d4f0c10fa858560f3c160fc0fff8da9b2 Reviewed-on: http://codereview.qt-project.org/5116 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/libs/utils/crumblepath.h')
-rw-r--r--src/libs/utils/crumblepath.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/utils/crumblepath.h b/src/libs/utils/crumblepath.h
index 7624ae73de..a2d60a7af9 100644
--- a/src/libs/utils/crumblepath.h
+++ b/src/libs/utils/crumblepath.h
@@ -38,8 +38,6 @@
#include <QtGui/QWidget>
#include <QtCore/QVariant>
-QT_FORWARD_DECLARE_CLASS(QResizeEvent)
-
namespace Utils {
struct CrumblePathPrivate;
@@ -47,6 +45,7 @@ struct CrumblePathPrivate;
class QTCREATOR_UTILS_EXPORT CrumblePath : public QWidget
{
Q_OBJECT
+
public:
explicit CrumblePath(QWidget *parent = 0);
~CrumblePath();
@@ -75,7 +74,7 @@ private:
void setBackgroundStyle();
private:
- QScopedPointer<CrumblePathPrivate> d;
+ CrumblePathPrivate *d;
};
} // namespace Utils