diff options
Diffstat (limited to 'plugins/ZeroNotification/src/main.cpp')
-rw-r--r-- | plugins/ZeroNotification/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ZeroNotification/src/main.cpp b/plugins/ZeroNotification/src/main.cpp index 08e4cfa015..20fb46f141 100644 --- a/plugins/ZeroNotification/src/main.cpp +++ b/plugins/ZeroNotification/src/main.cpp @@ -103,7 +103,7 @@ static void UpdateMenuItem() static int SoundSettingChanged(WPARAM, LPARAM lParam)
{
DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING*)lParam;
- if (mir_strcmp(cws->szModule, "Skin") || mir_strcmp(cws->szSetting, "UseSound"))
+ if (strcmp(cws->szModule, "Skin") || strcmp(cws->szSetting, "UseSound"))
return 0;
UpdateMenuItem();
|