diff options
author | chai <chaifix@163.com> | 2021-10-20 13:50:50 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-20 13:50:50 +0800 |
commit | afdcbfa9c4259fb003fd072ae011836230e7e39b (patch) | |
tree | 28687805fa6cd08ea998adffeac7b241af42cfe8 /Editor/EditorApplication.h | |
parent | c795fb754bfd5c84c1bfd7dc793c6519f01109ea (diff) |
+containers
Diffstat (limited to 'Editor/EditorApplication.h')
-rw-r--r-- | Editor/EditorApplication.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Editor/EditorApplication.h b/Editor/EditorApplication.h index 35c427c..9109a1f 100644 --- a/Editor/EditorApplication.h +++ b/Editor/EditorApplication.h @@ -7,20 +7,20 @@ using namespace LuaBind;
class EditorApplication
- : public LuaBind::NativeClass<EditorApplication > + : public LuaBind::NativeClass<EditorApplication >
{
public:
EditorApplication();
~EditorApplication();
void PullMessage();
- void SetMainWindow(ContainnerWindow* wnd);
+ void SetMainWindow(ContainerWindow* wnd);
void OnQuit();
private :
- LUA_BIND_DECL_FACTORY(EditorApplication); + LUA_BIND_DECL_FACTORY(EditorApplication);
LUA_BIND_DECL_METHOD(_New);
LUA_BIND_DECL_METHOD(_SetMainWindow);
|