issue #2460: rename EGLView::Create to EGLView->create

This commit is contained in:
Huabing.Xu 2013-08-20 16:23:46 +08:00
parent c276cdf6ee
commit 2e21e18b70
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ int APIENTRY _tWinMain(HINSTANCE hInstance,
EGLView *eglView = new EGLView();
eglView->setViewName("TestCpp");
eglView->setFrameSize(480, 320);
eglView->Create();
eglView->create();
return Application::getInstance()->run();
}