summaryrefslogtreecommitdiffstats
path: root/src/render/texture/textureimage.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire350@gmail.com>2016-02-25 19:52:03 +0100
committerPaul Lemire <paul.lemire@kdab.com>2016-03-05 10:18:05 +0000
commit34b3c898f4d7cbac46550a59bf5ac487df578188 (patch)
tree273a47e822dcf13121fcccae6cb59376fdca5ca4 /src/render/texture/textureimage.cpp
parente0edb256b8fa9a7f459ab20f1554b7578dcb27a2 (diff)
QBackendNode::peerUuid() renamed to peerId()
Change-Id: I72471d0b22d16bbbee33610e30a06daadffedbd9 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/texture/textureimage.cpp')
-rw-r--r--src/render/texture/textureimage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/texture/textureimage.cpp b/src/render/texture/textureimage.cpp
index ebcfc7dbf..a6ed8cb0a 100644
--- a/src/render/texture/textureimage.cpp
+++ b/src/render/texture/textureimage.cpp
@@ -91,7 +91,7 @@ void TextureImage::updateFromPeer(Qt3DCore::QNode *peer)
m_textureProvider = m_textureManager->lookupHandle(m_textureProviderId);
Texture *txt = m_textureManager->data(m_textureProvider);
// Notify the Texture that it has a new TextureImage and needs an update
- txt->addTextureImageData(m_textureImageManager->lookupHandle(peerUuid()));
+ txt->addTextureImageData(m_textureImageManager->lookupHandle(peerId()));
if (txt != Q_NULLPTR)
txt->addToPendingTextureJobs();
}