summaryrefslogtreecommitdiff
path: root/plugins/Nudge
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-20 17:00:14 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-20 17:00:14 +0000
commit30ab6ceb71842f003f649b3d62b89af010cf40d1 (patch)
treeb1dae7a6d545cdf622a165ba4c576d3a41d71221 /plugins/Nudge
parent65461e7b4edb683cc09086fdaf49e0c2ef918bd4 (diff)
- direct call of MS_SKIN_ADDNEWSOUND replaced with Skin_AddSound() call;
- obsolete structure SKINSOUNDDESC removed - dynamically translated hot keys; - checked correct LPGEN'ing of the sounds creation; - code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@500 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Nudge')
-rw-r--r--plugins/Nudge/ChangeLog.txt2
-rw-r--r--plugins/Nudge/main.cpp4
-rw-r--r--plugins/Nudge/shake.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Nudge/ChangeLog.txt b/plugins/Nudge/ChangeLog.txt
index 5404a70544..140671c177 100644
--- a/plugins/Nudge/ChangeLog.txt
+++ b/plugins/Nudge/ChangeLog.txt
@@ -130,7 +130,7 @@
0.0.0.12
===========
-+ Now possible to change the text shown when sending or receiving nudge ( [color=red]BUZZ!!![/color] for yahoo ;) )
++ Now possible to change the text shown when sending or receiving nudge ( [color=red]BUZZ!!![/color] for yahoo ;))
* Change options page.
! Now apply button is enable when changing status.
diff --git a/plugins/Nudge/main.cpp b/plugins/Nudge/main.cpp
index b2f1ab36ac..5648e052a5 100644
--- a/plugins/Nudge/main.cpp
+++ b/plugins/Nudge/main.cpp
@@ -327,7 +327,7 @@ void LoadProtocols(void)
//Load the default nudge
mir_snprintf(DefaultNudge.ProtocolName,sizeof(DefaultNudge.ProtocolName),"Default");
mir_snprintf(DefaultNudge.NudgeSoundname,sizeof(DefaultNudge.NudgeSoundname),"Nudge : Default");
- SkinAddNewSoundExT( DefaultNudge.NudgeSoundname, LPGENT("Nudge"),LPGENT("Default Nudge"));
+ SkinAddNewSoundEx( DefaultNudge.NudgeSoundname, LPGEN("Nudge"), LPGEN("Default Nudge"));
DefaultNudge.Load();
GlobalNudge.Load();
@@ -778,7 +778,7 @@ void Nudge_AddAccount(PROTOACCOUNT *proto)
TCHAR soundDesc[MAXMODULELABELLENGTH + 10];
mir_sntprintf(soundDesc,sizeof(soundDesc),_T("Nudge for %s"),proto->tszAccountName);
- SkinAddNewSoundExT( newNudge->item.NudgeSoundname, LPGENT("Nudge") , soundDesc);
+ SkinAddNewSoundExT(newNudge->item.NudgeSoundname, LPGENT("Nudge"), soundDesc);
newNudge->next = NudgeList;
NudgeList = newNudge;
diff --git a/plugins/Nudge/shake.cpp b/plugins/Nudge/shake.cpp
index c39d79c57b..f396c4f535 100644
--- a/plugins/Nudge/shake.cpp
+++ b/plugins/Nudge/shake.cpp
@@ -110,7 +110,7 @@ int TriggerShakeChat( WPARAM wParam, LPARAM lParam )
sai = (SPECIFICACTIONINFO *) lParam;
- if ( (sai->td != NULL) && (sai->td->dFlags&DF_CONTACT) )
+ if ( (sai->td != NULL) && (sai->td->dFlags&DF_CONTACT))
hContact = sai->td->hContact;
else
return 0;