diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-07-21 10:22:30 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-07-21 10:22:30 +0000 |
commit | 77dc4f6080513b9ea76e12b3e0e6b8ff9d93449c (patch) | |
tree | 2fd694b31a9f8b33c7c5163bebf2fee0b8a2c85a /plugins/MirLua/src/m_options.cpp | |
parent | 82836a6c4e1fd6759dcccc21f7c337219584025f (diff) |
MirLua: fix redundant (char*) cast
git-svn-id: http://svn.miranda-ng.org/main/trunk@17115 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_options.cpp')
-rw-r--r-- | plugins/MirLua/src/m_options.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirLua/src/m_options.cpp b/plugins/MirLua/src/m_options.cpp index 6d7ec23d2e..149403ee44 100644 --- a/plugins/MirLua/src/m_options.cpp +++ b/plugins/MirLua/src/m_options.cpp @@ -54,15 +54,15 @@ void MakeOptionDialogPage(lua_State *L, OPTIONSDIALOGPAGE &odp) odp.flags |= ODPF_TCHAR;
lua_getfield(L, -1, "Group");
- odp.ptszGroup = mir_utf8decodeT((char*)lua_tostring(L, -1));
+ odp.ptszGroup = mir_utf8decodeT(lua_tostring(L, -1));
lua_pop(L, 1);
lua_getfield(L, -1, "Title");
- odp.ptszTitle = mir_utf8decodeT((char*)luaL_checkstring(L, -1));
+ odp.ptszTitle = mir_utf8decodeT(luaL_checkstring(L, -1));
lua_pop(L, 1);
lua_getfield(L, -1, "Tab");
- odp.ptszTab = mir_utf8decodeT((char*)lua_tostring(L, -1));
+ odp.ptszTab = mir_utf8decodeT(lua_tostring(L, -1));
lua_pop(L, 1);
int onInitDialogRef = LUA_NOREF;
|