summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Jeisecke <jeisecke@saltation.de>2012-07-19 13:08:23 +0200
committerJens Bache-Wiig <jens.bache-wiig@nokia.com>2012-07-20 11:54:40 +0200
commitb7d98f2cf60368a0640037acbfadb4d6393d9525 (patch)
tree7de08de6423611648fe229a79c5c3e56dfd45433
parent8ff04d6a077547f5addc6e852a565eca7438ee43 (diff)
downloadqtquickcontrols-b7d98f2cf60368a0640037acbfadb4d6393d9525.tar.gz
Fix compilation with Visual C++
Change-Id: Ia8efe7fb7151d2f97e9c6dc009b592bde871300d Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@nokia.com>
-rw-r--r--src/qfiledialogitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qfiledialogitem.cpp b/src/qfiledialogitem.cpp
index 14c02c3d..1c18be04 100644
--- a/src/qfiledialogitem.cpp
+++ b/src/qfiledialogitem.cpp
@@ -294,7 +294,7 @@ void QFileDialogItem::close()
QVariant QFileDialogItem::itemChange(GraphicsItemChange change,
const QVariant &value)
{
- if (change == QGraphicsItem::QGraphicsItem::ItemVisibleHasChanged) {
+ if (change == QGraphicsItem::ItemVisibleHasChanged) {
bool visible = value.toBool();
if (visible && _isOpen) {