mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
tvg_loader: Fixed missing 'this->' keyword
Fixed missed 'this->' in tvgTvgLoader.cpp
This commit is contained in:
parent
4795927dc1
commit
8123250f52
1 changed files with 3 additions and 3 deletions
|
@ -88,8 +88,8 @@ bool TvgLoader::open(const char *data, uint32_t size)
|
||||||
{
|
{
|
||||||
//TODO: verify memory leak if open() is called multiple times.
|
//TODO: verify memory leak if open() is called multiple times.
|
||||||
|
|
||||||
pointer = data;
|
this->pointer = data;
|
||||||
size = size;
|
this->size = size;
|
||||||
|
|
||||||
//FIXME: verify TVG format here.
|
//FIXME: verify TVG format here.
|
||||||
|
|
||||||
|
@ -124,4 +124,4 @@ unique_ptr<Scene> TvgLoader::scene()
|
||||||
this->done();
|
this->done();
|
||||||
if (root) return move(root);
|
if (root) return move(root);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue