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_hotkeys.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_hotkeys.cpp')
-rw-r--r-- | plugins/MirLua/src/m_hotkeys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_hotkeys.cpp b/plugins/MirLua/src/m_hotkeys.cpp index b0d1e04d49..4023904fe4 100644 --- a/plugins/MirLua/src/m_hotkeys.cpp +++ b/plugins/MirLua/src/m_hotkeys.cpp @@ -16,7 +16,7 @@ void MakeHotkey(lua_State *L, HOTKEYDESC &hk) lua_pop(L, 1);
lua_getfield(L, -1, "Description");
- hk.ptszDescription = mir_utf8decodeT((char*)lua_tostring(L, -1));
+ hk.ptszDescription = mir_utf8decodeT(lua_tostring(L, -1));
lua_pop(L, 1);
lua_getfield(L, -1, "Section");
|