summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/stdclist/src/clistopts.cpp2
-rw-r--r--src/core/stdfile/src/fileopts.cpp2
-rw-r--r--src/core/stdmsg/src/chat_options.cpp1
-rw-r--r--src/core/stdmsg/src/msgoptions.cpp7
4 files changed, 0 insertions, 12 deletions
diff --git a/src/core/stdclist/src/clistopts.cpp b/src/core/stdclist/src/clistopts.cpp
index 691b93074c..0d6fd81391 100644
--- a/src/core/stdclist/src/clistopts.cpp
+++ b/src/core/stdclist/src/clistopts.cpp
@@ -65,10 +65,8 @@ public:
chkCycle.SetState(iTrayIcon == SETTING_TRAYICON_CYCLE);
chkMulti.SetState(iTrayIcon == SETTING_TRAYICON_MULTI);
chkDontCycle.SetState(iTrayIcon == SETTING_TRAYICON_SINGLE);
- onChange_Tray(0);
chkDisableBlink.SetState(g_plugin.getBool("DisableTrayFlash", false));
- onChange_DisableBlink(0);
blink.SetPosition(g_plugin.getWord("IconFlashTime", 550));
cycleTime.SetPosition(g_plugin.getWord("CycleTime", SETTING_CYCLETIME_DEFAULT));
diff --git a/src/core/stdfile/src/fileopts.cpp b/src/core/stdfile/src/fileopts.cpp
index cabbcdeba9..8587219961 100644
--- a/src/core/stdfile/src/fileopts.cpp
+++ b/src/core/stdfile/src/fileopts.cpp
@@ -132,8 +132,6 @@ public:
default: CheckDlgButton(m_hwnd, IDC_ASK, BST_CHECKED); break;
}
- onChange_NoScanner(0);
- onChange_AutoAccept(0);
return true;
}
diff --git a/src/core/stdmsg/src/chat_options.cpp b/src/core/stdmsg/src/chat_options.cpp
index a089c3d70f..97cd62c2bb 100644
--- a/src/core/stdmsg/src/chat_options.cpp
+++ b/src/core/stdmsg/src/chat_options.cpp
@@ -382,7 +382,6 @@ public:
edtHighlight.Enable(g_Settings.bHighlightEnabled);
chkLogging.SetState(g_Settings.bLoggingEnabled);
- onChange_Logging(nullptr);
return true;
}
diff --git a/src/core/stdmsg/src/msgoptions.cpp b/src/core/stdmsg/src/msgoptions.cpp
index 561ef27cf0..3af47d719d 100644
--- a/src/core/stdmsg/src/msgoptions.cpp
+++ b/src/core/stdmsg/src/msgoptions.cpp
@@ -245,8 +245,6 @@ public:
DWORD msgTimeout = g_dat.msgTimeout;
edtSecs.SetInt((msgTimeout >= 5000) ? msgTimeout / 1000 : 5);
- onChange_Avatar(nullptr);
-
chkCascade.Enable(!g_dat.bSavePerContact);
chkCtrlSupport.Enable(!g_dat.bAutoClose);
return true;
@@ -358,8 +356,6 @@ public:
spinCount.SetPosition(g_dat.nLoadCount);
spinTime.SetPosition(g_dat.nLoadTime);
-
- onChange_Time(nullptr);
return true;
}
@@ -485,8 +481,6 @@ public:
clist.OnListRebuilt = Callback(this, &COptionTypingDlg::RebuildList);
clist.OnCheckChanged = Callback(this, &COptionTypingDlg::onChange_Clist);
clist.OnOptionsChanged = Callback(this, &COptionTypingDlg::ResetCList);
-
- onChange_ShowNotify(nullptr);
return true;
}
@@ -542,7 +536,6 @@ public:
m_chkTabs.SetState(g_Settings.bTabsEnable);
m_chkTabsBottom.SetState(g_Settings.bTabsAtBottom);
m_chkTabsClose.SetState(g_Settings.bTabCloseOnDblClick);
- onChange_Tabs(&m_chkTabs);
return true;
}