player: remove constructor that accepts functional arguments.

it's not good usage than explicitly function call by users,
if the function is possibly failed.

Change-Id: I0e008093f6627ff24e8bc1d2e9ce0979dcca57bd
This commit is contained in:
Hermet Park 2018-07-16 21:08:26 +09:00 committed by Subhransu Mohanty
parent ad76a433c7
commit aa3008c3fc
2 changed files with 0 additions and 6 deletions

View File

@ -44,8 +44,6 @@ public:
~LOTPlayer();
LOTPlayer();
LOTPlayer(const char *filePath);
bool setFilePath(const char *filePath);
void setSize(int width, int height);

View File

@ -113,10 +113,6 @@ LOTPlayer::~LOTPlayer()
delete d;
}
LOTPlayer::LOTPlayer(const char *filePath):d(new LOTPlayerPrivate())
{
d->setFilePath(filePath);
}
/**
* \breif Brief abput the Api.