Remove bad asserts.

Remove 2 incorrect asserts.
Add 1 correct assert.
This commit is contained in:
Don Ho 2015-09-14 23:52:48 +02:00
parent ae324bd97e
commit 27787fa062
1 changed files with 3 additions and 4 deletions

View File

@ -63,15 +63,14 @@ public:
void create(tTbData * data, bool isRTL = false)
{
assert(data != nullptr);
StaticDialog::create(_dlgID, isRTL);
TCHAR temp[MAX_PATH];
::GetWindowText(_hSelf, temp, MAX_PATH);
_pluginName = temp;
// user information
assert(data->hClient != nullptr);
data->hClient = _hSelf;
assert(data->pszName != nullptr);
// user information
data->hClient = _hSelf;
data->pszName = (TCHAR *)_pluginName.c_str();
// supported features by plugin