summaryrefslogtreecommitdiff
path: root/plugins/MyDetails/data.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-18 21:04:10 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-18 21:04:10 +0000
commit02413392a2b40fcebe5f178c776402a9ce148604 (patch)
tree300d3327a04f932138fa820e9e10755bc58b7235 /plugins/MyDetails/data.cpp
parentc9700ede2ef5444c6f754322e7c255441d6d6721 (diff)
compilation fix for MyDetails
git-svn-id: http://svn.miranda-ng.org/main/trunk@1027 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/data.cpp')
-rw-r--r--plugins/MyDetails/data.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/MyDetails/data.cpp b/plugins/MyDetails/data.cpp
index 62192aa42e..728e601a06 100644
--- a/plugins/MyDetails/data.cpp
+++ b/plugins/MyDetails/data.cpp
@@ -158,7 +158,7 @@ int Protocol::GetStatus()
if (custom_status == 0)
{
- TCHAR *tmp = (char *) CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, status, GCMDF_TCHAR);
+ TCHAR *tmp = (char *) CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, status, GSMDF_TCHAR);
lcopystr(status_name, tmp, MAX_REGS(status_name));
}
else
@@ -659,8 +659,7 @@ Protocol * ProtocolArray::Get(const char *name)
bool ProtocolArray::CanSetStatusMsgPerProtocol()
{
- return ServiceExists(MS_ERSATZ_ENABLED) ||
- ServiceExists(MS_NAS_INVOKESTATUSWINDOW) || ServiceExists(MS_SA_CHANGESTATUSMSG);
+ return ServiceExists(MS_NAS_INVOKESTATUSWINDOW) || ServiceExists(MS_SA_CHANGESTATUSMSG);
}