Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix spelling errors that refer to non-existent symbols
These erors create the appearance of symbols that do not actually
exist.

Task-number: QTBUG-23737
Change-Id: I249742998524b6156185a6601f36e7691013ddf3
Reviewed-by: Martin Jones <martin.jones@nokia.com>
  • Loading branch information
Matthew Vogt authored and Qt by Nokia committed Feb 2, 2012
1 parent 20d641a commit 5e07b57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/declarative/qml/qdeclarativebinding.cpp
Expand Up @@ -282,7 +282,7 @@ QDeclarativeBinding::QDeclarativeBinding(const QString &str, bool isRewritten, Q
To avoid exposing v8 in the public API, functionPtr must be a pointer to a v8::Handle<v8::Function>.
For example:
v8::Handle<v8::Function> function;
new QDeclarativeBInding(&function, scope, ctxt);
new QDeclarativeBinding(&function, scope, ctxt);
*/
QDeclarativeBinding::QDeclarativeBinding(void *functionPtr, QObject *obj, QDeclarativeContextData *ctxt,
QObject *parent)
Expand Down
2 changes: 1 addition & 1 deletion src/declarative/qml/qdeclarativeengine.cpp
Expand Up @@ -891,7 +891,7 @@ void QDeclarativeEngine::setContextForObject(QObject *object, QDeclarativeContex
explicitly. QML uses a heuristic to set the default object
ownership. By default, an object that is created by QML has
JavaScriptOwnership. The exception to this are the root objects
created by calling QDeclarativeCompnent::create() or
created by calling QDeclarativeComponent::create() or
QDeclarativeComponent::beginCreate() which have CppOwnership by
default. The ownership of these root-level objects is considered to
have been transferred to the C++ caller.
Expand Down

0 comments on commit 5e07b57

Please sign in to comment.