aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/scenegraph
diff options
context:
space:
mode:
authorBjørn Erik Nilsen <bjorn.nilsen@nokia.com>2011-05-23 10:39:58 +0200
committerBjørn Erik Nilsen <bjorn.nilsen@nokia.com>2011-05-23 10:43:39 +0200
commit3fa63d73330bd74a563e33dbd56b4c04d16f470d (patch)
tree4c37790c55e0300c2bef74df91cc017721c27904 /src/declarative/scenegraph
parent9605fc786482bdd208cc3bfe92f318f7c314329c (diff)
Fix typo in API: QSGContext::schdelueTextureForCleanup.
Reviewed-by: kim
Diffstat (limited to 'src/declarative/scenegraph')
-rw-r--r--src/declarative/scenegraph/qsgcontext.cpp2
-rw-r--r--src/declarative/scenegraph/qsgcontext_p.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/scenegraph/qsgcontext.cpp b/src/declarative/scenegraph/qsgcontext.cpp
index dd35c06ecc..e36d432e40 100644
--- a/src/declarative/scenegraph/qsgcontext.cpp
+++ b/src/declarative/scenegraph/qsgcontext.cpp
@@ -164,7 +164,7 @@ QSGEngine *QSGContext::engine() const
The texture can be considered as deleted after this function has
been called.
*/
-void QSGContext::schdelueTextureForCleanup(QSGTexture *texture)
+void QSGContext::scheduleTextureForCleanup(QSGTexture *texture)
{
Q_D(QSGContext);
d->textureMutex.lock();
diff --git a/src/declarative/scenegraph/qsgcontext_p.h b/src/declarative/scenegraph/qsgcontext_p.h
index 59522b6f73..1344ac705d 100644
--- a/src/declarative/scenegraph/qsgcontext_p.h
+++ b/src/declarative/scenegraph/qsgcontext_p.h
@@ -104,7 +104,7 @@ public:
static QSGContext *createDefaultContext();
- void schdelueTextureForCleanup(QSGTexture *texture);
+ void scheduleTextureForCleanup(QSGTexture *texture);
void cleanupTextures();
void setFlashModeEnabled(bool enabled);