Android: Use isValid() to check if the jobject is valid.
Change-Id: I5ec67b9b2abfae2e2c2a44f0bcc7c72cb54beb49 Reviewed-by: Yoann Lopes <yoann.lopes@digia.com>
This commit is contained in:
committed by
The Qt Project
parent
4585518d52
commit
ca769ba264
@@ -60,13 +60,13 @@ JSurfaceTexture::JSurfaceTexture(unsigned int texName)
|
|||||||
, QJNIObject(g_qtSurfaceTextureClass, "(I)V", jint(texName))
|
, QJNIObject(g_qtSurfaceTextureClass, "(I)V", jint(texName))
|
||||||
, m_texID(int(texName))
|
, m_texID(int(texName))
|
||||||
{
|
{
|
||||||
if (m_jobject)
|
if (isValid())
|
||||||
g_objectMap.insert(int(texName), this);
|
g_objectMap.insert(int(texName), this);
|
||||||
}
|
}
|
||||||
|
|
||||||
JSurfaceTexture::~JSurfaceTexture()
|
JSurfaceTexture::~JSurfaceTexture()
|
||||||
{
|
{
|
||||||
if (m_jobject)
|
if (isValid())
|
||||||
g_objectMap.remove(m_texID);
|
g_objectMap.remove(m_texID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user