mirror of https://github.com/axmolengine/axmol.git
Merge pull request #1582 from guanqun/build-fixes
two simple build fixes
This commit is contained in:
commit
db2175e41c
|
@ -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()
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -15,7 +15,6 @@ public:
|
|||
|
||||
private:
|
||||
CCLabelTTF* m_pLabel;
|
||||
bool m_bShow;
|
||||
};
|
||||
|
||||
class KeypadTestScene : public TestScene
|
||||
|
|
Loading…
Reference in New Issue