diff options
author | George Hazan <ghazan@miranda.im> | 2017-04-10 16:48:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-04-10 16:48:42 +0300 |
commit | 1aaf889da0e0c577cb9d81cb118d06f4deabe925 (patch) | |
tree | 2091f29a01e72c8f869112a27e70d9a84c9a6c14 | |
parent | 8f7b9a76a69cbe33a9050171a1e139d726857ca1 (diff) |
unused setting removed
-rw-r--r-- | plugins/TabSRMM/src/chat.h | 1 | ||||
-rw-r--r-- | plugins/TabSRMM/src/chat_main.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/chat.h b/plugins/TabSRMM/src/chat.h index e42674d2d0..7d26ac9b29 100644 --- a/plugins/TabSRMM/src/chat.h +++ b/plugins/TabSRMM/src/chat.h @@ -64,7 +64,6 @@ struct TMUCSettings : public GlobalLogSettingsBase HICON hIconOverlay;
DWORD dwIconFlags;
LONG iNickListFontHeight;
- int iEventLimitThreshold;
HFONT UserListFonts[CHAT_STATUS_MAX];
COLORREF UserListColors[CHAT_STATUS_MAX];
diff --git a/plugins/TabSRMM/src/chat_main.cpp b/plugins/TabSRMM/src/chat_main.cpp index c7131cc174..c318231a7c 100644 --- a/plugins/TabSRMM/src/chat_main.cpp +++ b/plugins/TabSRMM/src/chat_main.cpp @@ -80,7 +80,6 @@ static void OnCreateModule(MODULEINFO *mi) static void OnLoadSettings()
{
- g_Settings.iEventLimitThreshold = db_get_w(0, CHAT_MODULE, "LogLimitThreshold", 20);
g_Settings.dwIconFlags = M.GetDword(CHAT_MODULE, "IconFlags", 0x0000);
g_Settings.bOpenInDefault = M.GetBool(CHAT_MODULE, "DefaultContainer", true);
g_Settings.UserListColors[CHAT_STATUS_NORMAL] = M.GetDword(CHATFONT_MODULE, "Font18Col", RGB(0, 0, 0));
|