diff options
author | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-02-14 19:37:25 +0000 |
---|---|---|
committer | watcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2012-02-14 19:37:25 +0000 |
commit | b13235011437cbbe5421b9d3d5c164743be20ef3 (patch) | |
tree | 3082bc24c65a427aead5ffec8aecd42ec076dd02 /Nudge/nudge.cpp | |
parent | 637559f4c7bcd3f9780b5e343b86cbad3b13d967 (diff) |
Nudge: version bump
+ 64bit version
+ unhook hooks on exit
+ destroy services on exit
+ open message window on popup click
+ open message window on preview
+ moved sounds in "Nudge" section
- fixed navigation in options
+ new option: "Open message window"
+ New option: "Open contact list"
+ new option: "Respect ignore settings (status changes)"
* status changes are now stored in UTF8
- Removed popup on sending nudges (on popular request)
* popup options are moved into popup classes, needs a recent version of popup+ or YAPP
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@271 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'Nudge/nudge.cpp')
-rw-r--r-- | Nudge/nudge.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Nudge/nudge.cpp b/Nudge/nudge.cpp index 0d603bb..73f831d 100644 --- a/Nudge/nudge.cpp +++ b/Nudge/nudge.cpp @@ -102,6 +102,8 @@ void CNudgeElement::Load(void) _tcsncpy(this->recText,TranslateT("You received a nudge"),TEXT_LEN);
DBFreeVariant(&dbv);
}
+ else
+ _tcsncpy(this->recText,TranslateT("You received a nudge"),TEXT_LEN);
mir_snprintf(SectionName,512,"%s-senText", ProtocolName);
if(!DBGetContactSettingTString(NULL,"Nudge",SectionName,&dbv))
{
@@ -110,4 +112,6 @@ void CNudgeElement::Load(void) _tcsncpy(this->senText,TranslateT("You sent a nudge"),TEXT_LEN);
DBFreeVariant(&dbv);
}
+ else
+ _tcsncpy(this->senText,TranslateT("You sent a nudge"),TEXT_LEN);
}
\ No newline at end of file |