diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-06 08:16:09 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-06 08:16:09 +0000 |
commit | a4c70f6bedb25e5cffb08dfc5cbc2597d1642d6b (patch) | |
tree | 20db522d4733f5e50e00f78b82e75f2b7671789c /plugins/Twitter/connection.cpp | |
parent | 721f5bbb2a8e903e7793434c4f2430f49c5036dc (diff) |
oops :)
git-svn-id: http://svn.miranda-ng.org/main/trunk@326 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Twitter/connection.cpp')
-rw-r--r-- | plugins/Twitter/connection.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/Twitter/connection.cpp b/plugins/Twitter/connection.cpp index 18715e5b84..83660a8256 100644 --- a/plugins/Twitter/connection.cpp +++ b/plugins/Twitter/connection.cpp @@ -307,13 +307,10 @@ void TwitterProto::UpdateFriends() }
-void TwitterProto::ShowContactPopup(HANDLE hContact, const std::wstring &text)
+void TwitterProto::ShowContactPopup(HANDLE hContact, const std::tstring &text)
{
- if (!ServiceExists(MS_POPUP_ADDPOPUPT) || DBGetContactSettingByte(0,
- m_szModuleName, TWITTER_KEY_POPUP_SHOW, 0) == 0)
- {
+ if (!ServiceExists(MS_POPUP_ADDPOPUPT) || DBGetContactSettingByte(0, m_szModuleName, TWITTER_KEY_POPUP_SHOW, 0) == 0)
return;
- }
POPUPDATAT popup = {};
popup.lchContact = hContact;
|