initialize not initialized var

Origin commit data
------------------
Commit: 926e0ce141
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-11-05 (Mon, 05 Nov 2012)

Origin message was:
------------------
initialize not initialized var
This commit is contained in:
Jacek Jendrzej
2012-11-05 09:24:51 +01:00
parent 28883ba73b
commit d74377dd47
12 changed files with 53 additions and 7 deletions

View File

@@ -72,7 +72,7 @@ class CBox
public:
/* Constructor */
inline CBox(){;};
inline CBox(){iY = 0; iX = 0; iWidth = 0;iHeight = 0;};
inline CBox( const int _iX, const int _iY, const int _iWidth, const int _iHeight){iX=_iX; iY=_iY; iWidth=_iWidth; iHeight=_iHeight;};
inline ~CBox(){;};
/* Functions */