Merge pull request #1582 from guanqun/build-fixes

two simple build fixes
This commit is contained in:
James Chen 2012-11-17 02:13:22 -08:00
commit db2175e41c
3 changed files with 1 additions and 3 deletions

View File

@ -215,8 +215,8 @@ class CC_DLL CCCallFunc : public CCActionInstant //<NSCopying>
public:
CCCallFunc()
: m_pSelectorTarget(NULL)
, m_pCallFunc(NULL)
, m_nScriptHandler(0)
, m_pCallFunc(NULL)
{
}
virtual ~CCCallFunc()

View File

@ -1,7 +1,6 @@
#include "KeypadTest.h"
KeypadTest::KeypadTest()
: m_bShow(true)
{
CCSize s = CCDirector::sharedDirector()->getWinSize();
CCLabelTTF* label = CCLabelTTF::create("Keypad Test", "Arial", 28);

View File

@ -15,7 +15,6 @@ public:
private:
CCLabelTTF* m_pLabel;
bool m_bShow;
};
class KeypadTestScene : public TestScene