mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +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.
|
||||
|
||||
pointer = data;
|
||||
size = size;
|
||||
this->pointer = data;
|
||||
this->size = size;
|
||||
|
||||
//FIXME: verify TVG format here.
|
||||
|
||||
|
@ -124,4 +124,4 @@ unique_ptr<Scene> TvgLoader::scene()
|
|||
this->done();
|
||||
if (root) return move(root);
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue