diff options
author | George Hazan <george.hazan@gmail.com> | 2013-12-27 18:53:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-12-27 18:53:50 +0000 |
commit | eea8926b61889ea80c76f9fb6b5bf5d1afe6c6eb (patch) | |
tree | b951626b03237050cdd72c501e8408ac1163e1d8 /src/modules/database | |
parent | b1dc0111247ffd219585458edcf24c07c0b55ddf (diff) |
old nasty perversion EVENTTYPE_STATUSCHANGE removed forever
git-svn-id: http://svn.miranda-ng.org/main/trunk@7396 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database')
-rw-r--r-- | src/modules/database/dbutils.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/database/dbutils.cpp b/src/modules/database/dbutils.cpp index 83824c8315..81693aa23b 100644 --- a/src/modules/database/dbutils.cpp +++ b/src/modules/database/dbutils.cpp @@ -175,11 +175,6 @@ static INT_PTR DbEventGetText(WPARAM wParam, LPARAM lParam) return 0;
}
- // temporary fix for bug with event types conflict between jabber chat states notifications
- // and srmm's status changes, must be commented out in future releases
- if (dbei->eventType == 25368 && dbei->cbBlob == 1 && dbei->pBlob[0] == 1)
- return 0;
-
// by default treat an event's blob as a string
if (egt->datatype == DBVT_WCHAR) {
char *str = (char*)alloca(dbei->cbBlob + 1);
|