summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/mlua_options.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-02-17 11:31:59 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-02-17 11:31:59 +0000
commit2c7da3b79ebbd1833d1edfdef52d14c2ef2547eb (patch)
tree15beb4e894b43b7e0a9d5912e01dbdc0fd663d0e /plugins/MirLua/src/mlua_options.h
parentdf1277bc854e0db5424623890be9a3d74750a03f (diff)
MirLua:
- minor MT fixes - enabled chat module - project cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@16289 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/mlua_options.h')
-rw-r--r--plugins/MirLua/src/mlua_options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirLua/src/mlua_options.h b/plugins/MirLua/src/mlua_options.h
index b81676bfc8..cc4171938f 100644
--- a/plugins/MirLua/src/mlua_options.h
+++ b/plugins/MirLua/src/mlua_options.h
@@ -16,7 +16,7 @@ public:
};
-class CLuaOptions : public CDlgBase
+class CMLuaOptions : public CDlgBase
{
private:
CCtrlCheck m_popupOnError;
@@ -38,7 +38,7 @@ protected:
INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
public:
- CLuaOptions(int idDialog);
+ CMLuaOptions(int idDialog);
void CreateLink(CCtrlData& ctrl, const char *szSetting, BYTE type, DWORD iValue);
void CreateLink(CCtrlData& ctrl, const char *szSetting, TCHAR *szValue);
@@ -51,7 +51,7 @@ public:
ctrl.CreateDbLink(new CMOptionLink<T>(option));
}
- static CDlgBase *CreateOptionsPage() { return new CLuaOptions(IDD_OPTIONS); }
+ static CDlgBase *CreateOptionsPage() { return new CMLuaOptions(IDD_OPTIONS); }
};
#endif //_LUA_OPTIONS_H_ \ No newline at end of file