[ENHANCEMENT] Remove incorrect assert statement

1. Remove incorrect assert statement.
2. Use standard allocation method instead of Microsoft's obscure one.
This commit is contained in:
Don Ho 2015-08-12 22:35:15 +02:00
parent 685971e3fa
commit cb0ad2786d
2 changed files with 5 additions and 10 deletions

View File

@ -46,11 +46,8 @@ enum
StatusBar::~StatusBar()
{
if (NULL != _hloc)
{
::LocalUnlock(_hloc);
::LocalFree(_hloc);
}
if (_lpParts != nullptr)
delete[] _lpParts;
}
@ -62,7 +59,6 @@ void StatusBar::init(HINSTANCE /*hInst*/, HWND /*hPere*/)
void StatusBar::init(HINSTANCE hInst, HWND hPere, int nbParts)
{
assert(nbParts > 0);
Window::init(hInst, hPere);
InitCommonControls();
@ -84,8 +80,8 @@ void StatusBar::init(HINSTANCE hInst, HWND hPere, int nbParts)
_partWidthArray.resize(nbParts, (int) defaultPartWidth);
// Allocate an array for holding the right edge coordinates.
_hloc = ::LocalAlloc(LHND, sizeof(int) * _partWidthArray.size());
_lpParts = (LPINT)::LocalLock(_hloc);
if (_partWidthArray.size())
_lpParts = new int[_partWidthArray.size()];
RECT rc;
::GetClientRect(_hParent, &rc);

View File

@ -60,7 +60,6 @@ private:
private:
std::vector<int> _partWidthArray;
HLOCAL _hloc = NULL;
LPINT _lpParts = NULL;
int *_lpParts = nullptr;
generic_string _lastSetText;
};