diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-28 07:16:09 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-28 07:16:09 (GMT) |
commit | 72ddbacc05b50295b029586d44d435cae1f53a6e (patch) | |
tree | f1b35408e5871b224837d3f9ccb0c5052b5a68ab /src | |
parent | 38ec21238a82b9c886cd38ff293b617c6e3970c2 (diff) | |
download | Qt-72ddbacc05b50295b029586d44d435cae1f53a6e.zip Qt-72ddbacc05b50295b029586d44d435cae1f53a6e.tar.gz Qt-72ddbacc05b50295b029586d44d435cae1f53a6e.tar.bz2 |
Initialize variable
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/fx/qfxlistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/fx/qfxlistview.cpp b/src/declarative/fx/qfxlistview.cpp index e563ecb..4ff17c1 100644 --- a/src/declarative/fx/qfxlistview.cpp +++ b/src/declarative/fx/qfxlistview.cpp @@ -54,7 +54,7 @@ class QFxListViewAttached : public QObject Q_OBJECT public: QFxListViewAttached(QObject *parent) - : QObject(parent), m_isCurrent(false), m_delayRemove(false) {} + : QObject(parent), m_view(0), m_isCurrent(false), m_delayRemove(false) {} ~QFxListViewAttached() { attachedProperties.remove(parent()); } |