diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-14 18:48:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-14 18:48:50 +0300 |
commit | 357bb36c10405e7571f9ebd41d8e11837ebd6175 (patch) | |
tree | a1cd0dabe39ce913f7bf3356e47fc1d18363940e /plugins/IEView/src/Utils.cpp | |
parent | f12d6a4000cfce521392200635d1cadc63dba934 (diff) |
duplicate code removed
Diffstat (limited to 'plugins/IEView/src/Utils.cpp')
-rw-r--r-- | plugins/IEView/src/Utils.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/IEView/src/Utils.cpp b/plugins/IEView/src/Utils.cpp index c29b4b3b21..ce3ebee636 100644 --- a/plugins/IEView/src/Utils.cpp +++ b/plugins/IEView/src/Utils.cpp @@ -115,15 +115,3 @@ void Utils::appendIcon(CMStringA &str, const char *iconFile) {
str.AppendFormat("<img class=\"img\" src=\"file://%s/plugins/ieview/%s\"/> ", workingDirUtf8, iconFile);
}
-
-bool Utils::DbEventIsForMsgWindow(DBEVENTINFO *dbei)
-{
- DBEVENTTYPEDESCR *et = DbEvent_GetType(dbei->szModule, dbei->eventType);
- return et && (et->flags & DETF_MSGWINDOW);
-}
-
-bool Utils::DbEventIsForHistory(DBEVENTINFO *dbei)
-{
- DBEVENTTYPEDESCR *et = DbEvent_GetType(dbei->szModule, dbei->eventType);
- return et && (et->flags & DETF_HISTORY);
-}
|