diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-25 09:32:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-25 09:32:03 +0000 |
commit | b1224491a9de0ad3c35104507ee167f89d8fa76f (patch) | |
tree | 72f7eb24cb894236257f205559fd7a96e73935bb /protocols/FacebookRM | |
parent | d6ed23e489d106cd4b06a03c820706467e853f49 (diff) |
ะก++ sources: __VERSION_STRING -> __VERSION_STRING_DOTS
git-svn-id: http://svn.miranda-ng.org/main/trunk@7881 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/FacebookRM')
-rw-r--r-- | protocols/FacebookRM/src/connection.cpp | 2 | ||||
-rw-r--r-- | protocols/FacebookRM/src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/connection.cpp b/protocols/FacebookRM/src/connection.cpp index f88f3b2e90..2c9496add2 100644 --- a/protocols/FacebookRM/src/connection.cpp +++ b/protocols/FacebookRM/src/connection.cpp @@ -67,7 +67,7 @@ void FacebookProto::ChangeStatus(void*) { // Login
SYSTEMTIME t;
GetLocalTime(&t);
- debugLogA("[%d.%d.%d] Using Facebook Protocol RM %s", t.wDay, t.wMonth, t.wYear, __VERSION_STRING);
+ debugLogA("[%d.%d.%d] Using Facebook Protocol RM %s", t.wDay, t.wMonth, t.wYear, __VERSION_STRING_DOTS);
debugLogA("***** Beginning SignOn process");
diff --git a/protocols/FacebookRM/src/main.cpp b/protocols/FacebookRM/src/main.cpp index b480de9be6..ba2c9c0530 100644 --- a/protocols/FacebookRM/src/main.cpp +++ b/protocols/FacebookRM/src/main.cpp @@ -114,7 +114,7 @@ extern "C" int __declspec(dllexport) Load(void) #else
agent << " Facebook Protocol RM/";
#endif
- agent << __VERSION_STRING;
+ agent << __VERSION_STRING_DOTS;
g_strUserAgent = agent.str();
return 0;
|