summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-02-23 16:20:47 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-02-23 16:20:47 +0000
commit69d9a2e86953464ba93f35588d83c9f239fd0267 (patch)
tree5ea80fc0599fa950de1362aaa84f2ecbf0d1d5b8
parent2e711d104e232f6e957cf2dcd6954f659c980f02 (diff)
fix for the short plugin name
git-svn-id: http://svn.miranda-ng.org/main/trunk@3735 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/NewXstatusNotify/src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewXstatusNotify/src/main.cpp b/plugins/NewXstatusNotify/src/main.cpp
index 2dadf9c32b..3dd69e97a5 100644
--- a/plugins/NewXstatusNotify/src/main.cpp
+++ b/plugins/NewXstatusNotify/src/main.cpp
@@ -43,7 +43,7 @@ extern OPTIONS opt;
PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
- "(x)Status Notify",
+ "xStatus Notify",
__VERSION_DWORD,
"Notifies you when a contact changes his/her (X)status or status message.",
"Luca Santarelli, Vasilich, yaho",
@@ -749,9 +749,9 @@ void PlayChangeSound(HANDLE hContact, WORD oldStatus, WORD newStatus)
char szSoundFile[MAX_PATH] = {0};
- if (!db_get_b(0, "SkinSoundsOff", "UserFromOffline", 0) &&
+ if (!db_get_b(0, "SkinSoundsOff", "UserFromOffline", 0) &&
!db_get_s(0,"SkinSounds", "UserFromOffline", &dbv) &&
- oldStatus == ID_STATUS_OFFLINE)
+ oldStatus == ID_STATUS_OFFLINE)
{
strcpy(szSoundFile, "UserFromOffline");
db_free(&dbv);