diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-12 20:55:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-12 20:55:43 +0000 |
commit | 29421cf08eb712ed3774fefb47b6d2f7a4fc9296 (patch) | |
tree | d883add69bce4be70f0da53421f98bc4885ebe15 /plugins/SeenPlugin/src/main.cpp | |
parent | fb866177c8ce8b2f0bb779fbf42cd988dc7d5e13 (diff) |
fix for Unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@1898 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/src/main.cpp')
-rw-r--r-- | plugins/SeenPlugin/src/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/SeenPlugin/src/main.cpp b/plugins/SeenPlugin/src/main.cpp index 6a7820d203..4b92d2a552 100644 --- a/plugins/SeenPlugin/src/main.cpp +++ b/plugins/SeenPlugin/src/main.cpp @@ -62,9 +62,8 @@ int MainInit(WPARAM wparam,LPARAM lparam) includeIdle = (BOOL )db_get_b(NULL,S_MOD,"IdleSupport",1);
hOptInit = HookEvent(ME_OPT_INITIALISE, OptionsInit);
- if ( db_get_b(NULL,S_MOD,"MenuItem",1)) {
+ if ( db_get_b(NULL,S_MOD,"MenuItem",1))
InitMenuitem();
- }
if ( db_get_b(NULL,S_MOD,"UserinfoTab",1))
ehuserinfo = HookEvent(ME_USERINFO_INITIALISE,UserinfoInit);
|