fix compiling error (#16420)

This commit is contained in:
minggo 2016-08-23 11:05:01 +08:00 committed by GitHub
parent b0c8a8505a
commit 1b3ff00cef
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class Cocos2dxGLSurfaceView extends GLSurfaceView {
private static Handler sHandler; private static Handler sHandler;
private static Cocos2dxGLSurfaceView mCocos2dxGLSurfaceView; private static Cocos2dxGLSurfaceView mCocos2dxGLSurfaceView;
private static Cocos2dxTextInputWraper sCocos2dxTextInputWraper; private static Cocos2dxTextInputWrapper sCocos2dxTextInputWraper;
private Cocos2dxRenderer mCocos2dxRenderer; private Cocos2dxRenderer mCocos2dxRenderer;
private Cocos2dxEditBox mCocos2dxEditText; private Cocos2dxEditBox mCocos2dxEditText;
@ -90,7 +90,7 @@ public class Cocos2dxGLSurfaceView extends GLSurfaceView {
this.setFocusableInTouchMode(true); this.setFocusableInTouchMode(true);
Cocos2dxGLSurfaceView.mCocos2dxGLSurfaceView = this; Cocos2dxGLSurfaceView.mCocos2dxGLSurfaceView = this;
Cocos2dxGLSurfaceView.sCocos2dxTextInputWraper = new Cocos2dxTextInputWraper(this); Cocos2dxGLSurfaceView.sCocos2dxTextInputWraper = new Cocos2dxTextInputWrapper(this);
Cocos2dxGLSurfaceView.sHandler = new Handler() { Cocos2dxGLSurfaceView.sHandler = new Handler() {
@Override @Override