aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/qml
diff options
context:
space:
mode:
authorTobias Hunger <[email protected]>2010-08-26 18:35:30 +0200
committerTobias Hunger <[email protected]>2010-08-27 12:10:29 +0200
commit715796b48a4d6656b8375bc42c3396308089c937 (patch)
tree576749701ac9b10d5c5f6e4e377d15b99f793b45 /src/tools/qml
parent8d188d01046caaf7e41657e5c34c450620de05f1 (diff)
Fix krazy issues: Use explicit constructors
* Fix all warnings about non-explicit constructors except for those in 3rdparty code.
Diffstat (limited to 'src/tools/qml')
-rw-r--r--src/tools/qml/qmlobserver/qmlruntime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qml/qmlobserver/qmlruntime.h b/src/tools/qml/qmlobserver/qmlruntime.h
index e330fa1185a..47491e67125 100644
--- a/src/tools/qml/qmlobserver/qmlruntime.h
+++ b/src/tools/qml/qmlobserver/qmlruntime.h
@@ -78,7 +78,7 @@ class QDeclarativeViewer
Q_OBJECT
public:
- QDeclarativeViewer(QWidget *parent = 0, Qt::WindowFlags flags = 0);
+ explicit QDeclarativeViewer(QWidget *parent = 0, Qt::WindowFlags flags = 0);
~QDeclarativeViewer();
static void registerTypes();