mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 12:34:30 +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.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue