diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2009-09-29 14:41:48 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2009-09-29 14:41:48 (GMT) |
commit | 86a30b667e189b8659fab384d93022e55a67b81e (patch) | |
tree | 4568508455e904db73608f99f1c023657c9630e9 /src/script | |
parent | 0069f50019462a3dd95d1610361d00d91bf4afe1 (diff) | |
download | Qt-86a30b667e189b8659fab384d93022e55a67b81e.zip Qt-86a30b667e189b8659fab384d93022e55a67b81e.tar.gz Qt-86a30b667e189b8659fab384d93022e55a67b81e.tar.bz2 |
Remove "inline" keyword from unused constructors
Found during API review, make the private safety constructors follow the
pattern of our Q_DISABLE_COPY macro.
Reviewed-by: Robert Griebl
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/api/qscriptvalue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/api/qscriptvalue.h b/src/script/api/qscriptvalue.h index 2bc89bd..32f7a43 100644 --- a/src/script/api/qscriptvalue.h +++ b/src/script/api/qscriptvalue.h @@ -216,9 +216,9 @@ public: private: // force compile error, prevent QScriptValue(bool) to be called - inline QScriptValue(void *); + QScriptValue(void *); // force compile error, prevent QScriptValue(QScriptEngine*, bool) to be called - inline QScriptValue(QScriptEngine *, void *); + QScriptValue(QScriptEngine *, void *); QScriptValue(QScriptValuePrivate*); |