summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/Xfire_base.cpp
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2012-11-05 22:57:59 +0000
committerRobert Pösel <robyer@seznam.cz>2012-11-05 22:57:59 +0000
commit1567d9a53b7fd02d8a6cf87a65d1d76cb99ca2c3 (patch)
treeb75b1477b19a8c5c6db13a52a299e1f0fa6ec256 /protocols/Xfire/src/Xfire_base.cpp
parentbc16a1ba286b8a8c7b54cdc198c577f43150f06d (diff)
XFire: Fixed sending messages and maybe other things
(what was that madness? it should never work - are those original sources and am I just tired or not? o_O) git-svn-id: http://svn.miranda-ng.org/main/trunk@2214 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/Xfire_base.cpp')
-rw-r--r--protocols/Xfire/src/Xfire_base.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Xfire/src/Xfire_base.cpp b/protocols/Xfire/src/Xfire_base.cpp
index 2d28b12659..f9aa3cc553 100644
--- a/protocols/Xfire/src/Xfire_base.cpp
+++ b/protocols/Xfire/src/Xfire_base.cpp
@@ -100,7 +100,7 @@ void Xfire_base::readStringfromDB(char*name,unsigned int dbid,char**to)
//wert aus der dblesen
sprintf_s(temp,128,"%s_%i",name,dbid);
- if(!DBGetContactSettingTString(NULL, protocolname, temp,&dbv))
+ if(!DBGetContactSettingString(NULL, protocolname, temp,&dbv))
{
//string setzen
setString(dbv.pszVal,to);
@@ -118,7 +118,7 @@ void Xfire_base::readStringfromDB(char*name,unsigned int dbid,int id,char**to)
//wert aus der dblesen
sprintf_s(temp,128,"%s_%i_%i",name,dbid,id);
- if(!DBGetContactSettingTString(NULL, protocolname, temp,&dbv))
+ if(!DBGetContactSettingString(NULL, protocolname, temp,&dbv))
{
//string setzen
setString(dbv.pszVal,to);