diff options
author | George Hazan <george.hazan@gmail.com> | 2014-06-15 18:00:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-06-15 18:00:33 +0000 |
commit | 22347e2a45e7ee6d76f33b64f65fe49ab1cf0e7d (patch) | |
tree | a176a946b708862ba44c1b564f9b6f49e43d6bd0 /plugins/HistoryPlusPlus/hpp_opt_dialog.pas | |
parent | 49578f2e479df5135f36afe5ae4d6137954ed71e (diff) |
removed support for mathmodule & speech
git-svn-id: http://svn.miranda-ng.org/main/trunk@9507 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_opt_dialog.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_opt_dialog.pas | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas index 6f0eed12bb..d5c532d855 100644 --- a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas +++ b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas @@ -116,8 +116,6 @@ begin if GetChecked(IDC_BBCODE) <> GridOptions.BBCodesEnabled then exit;
if SmileyAddEnabled then
if GetChecked(IDC_SMILEY) <> GridOptions.SmileysEnabled then exit;
- if MathModuleEnabled then
- if GetChecked(IDC_MATH) <> GridOptions.MathModuleEnabled then exit;
if GetChecked(IDC_RAWRTF) <> GridOptions.RawRTFEnabled then exit;
if GetChecked(IDC_AVATARSHISTORY) <> GridOptions.AvatarsHistoryEnabled then exit;
@@ -158,7 +156,6 @@ begin GridOptions.AvatarsHistoryEnabled := GetChecked(IDC_AVATARSHISTORY);
if SmileyAddEnabled then GridOptions.SmileysEnabled := GetChecked(IDC_SMILEY);
- if MathModuleEnabled then GridOptions.MathModuleEnabled := GetChecked(IDC_MATH);
SaveGridOptions;
finally
@@ -233,9 +230,6 @@ begin EnableWindow(GetDlgItem(hDlg,IDC_SMILEY),SmileyAddEnabled);
if SmileyAddEnabled then
SetChecked(IDC_SMILEY,GridOptions.SmileysEnabled);
- EnableWindow(GetDlgItem(hDlg,IDC_MATH),MathModuleEnabled);
- if MathModuleEnabled then
- SetChecked(IDC_MATH,GridOptions.MathModuleEnabled);
SetChecked(IDC_RAWRTF,GridOptions.RawRTFEnabled);
SetChecked(IDC_AVATARSHISTORY,GridOptions.AvatarsHistoryEnabled);
|