From 940231dc5a484b03a278900e1880aa083472b601 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 9 Apr 2013 19:43:20 +0000 Subject: compilation fix git-svn-id: http://svn.miranda-ng.org/main/trunk@4402 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Skype/src/skype_account.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/Skype/src/skype_account.cpp') diff --git a/protocols/Skype/src/skype_account.cpp b/protocols/Skype/src/skype_account.cpp index e4e2887481..3bbf06bab3 100644 --- a/protocols/Skype/src/skype_account.cpp +++ b/protocols/Skype/src/skype_account.cpp @@ -101,7 +101,7 @@ void __cdecl CSkypeProto::SignInAsync(void*) bool CSkypeProto::SignIn(int status) { - this->login = ::DBGetString(NULL, this->m_szModuleName, SKYPE_SETTINGS_LOGIN); + this->login = ::db_get_sa(NULL, this->m_szModuleName, SKYPE_SETTINGS_LOGIN); if ( !this->login || !::strlen(this->login)) { this->m_iStatus = ID_STATUS_OFFLINE; @@ -119,7 +119,7 @@ bool CSkypeProto::SignIn(int status) ::mir_free(this->password); this->password = NULL; } - this->password = ::DBGetString(NULL, this->m_szModuleName, SKYPE_SETTINGS_PASSWORD); + this->password = ::db_get_sa(NULL, this->m_szModuleName, SKYPE_SETTINGS_PASSWORD); if ( !this->password || !::strlen(this->password)) { if (this->password) -- cgit v1.2.3