summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-08-02 21:35:05 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-08-02 21:35:05 +0000
commiteb026f2ffdad3bf43c924dc2c080013b6423293a (patch)
tree0a7f1336a16e0198be3ceafab2394abeb5912dc5
parentd2946eb5bb3692806bb67e6e8a8d981f0e599850 (diff)
git-svn-id: http://svn.miranda-ng.org/main/trunk@1333 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/Yahoo/util.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/protocols/Yahoo/util.cpp b/protocols/Yahoo/util.cpp
index 9e3c45d8bc..e607ec0a8c 100644
--- a/protocols/Yahoo/util.cpp
+++ b/protocols/Yahoo/util.cpp
@@ -343,18 +343,9 @@ extern PLUGININFOEX pluginInfo;
void CYahooProto::YAHOO_utils_logversion()
{
char str[256];
-
-#ifdef YAHOO_CVSBUILD
- _snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%da (%s %s)", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
- (pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF);
-#else
_snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%d", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
(pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF);
-#endif
DebugLog(str);
-#ifdef YAHOO_CVSBUILD
- DebugLog("You are using a development version of Yahoo. Please make sure you are using the latest version before posting bug reports.");
-#endif
}
void SetButtonCheck(HWND hwndDlg, int CtrlID, BOOL bCheck)