summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/HistoryGrid.pas
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-06-15 18:00:33 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-06-15 18:00:33 +0000
commit22347e2a45e7ee6d76f33b64f65fe49ab1cf0e7d (patch)
treea176a946b708862ba44c1b564f9b6f49e43d6bd0 /plugins/HistoryPlusPlus/HistoryGrid.pas
parent49578f2e479df5135f36afe5ae4d6137954ed71e (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/HistoryGrid.pas')
-rw-r--r--plugins/HistoryPlusPlus/HistoryGrid.pas17
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/HistoryPlusPlus/HistoryGrid.pas b/plugins/HistoryPlusPlus/HistoryGrid.pas
index 3cc5cee89c..6954426099 100644
--- a/plugins/HistoryPlusPlus/HistoryGrid.pas
+++ b/plugins/HistoryPlusPlus/HistoryGrid.pas
@@ -198,7 +198,6 @@ type
FBBCodesEnabled: Boolean;
FSmileysEnabled: Boolean;
- FMathModuleEnabled: Boolean;
FRawRTFEnabled: Boolean;
FAvatarsHistoryEnabled: Boolean;
@@ -242,7 +241,6 @@ type
procedure SetBBCodesEnabled(const Value: Boolean);
procedure SetSmileysEnabled(const Value: Boolean);
- procedure SetMathModuleEnabled(const Value: Boolean);
procedure SetRawRTFEnabled(const Value: Boolean);
procedure SetAvatarsHistoryEnabled(const Value: Boolean);
procedure SetProfileName(const Value: String);
@@ -303,7 +301,6 @@ type
property BBCodesEnabled: Boolean read FBBCodesEnabled write SetBBCodesEnabled;
property SmileysEnabled: Boolean read FSmileysEnabled write SetSmileysEnabled;
- property MathModuleEnabled: Boolean read FMathModuleEnabled write SetMathModuleEnabled;
property RawRTFEnabled: Boolean read FRawRTFEnabled write SetRawRTFEnabled;
property AvatarsHistoryEnabled: Boolean read FAvatarsHistoryEnabled write SetAvatarsHistoryEnabled;
@@ -5984,7 +5981,6 @@ begin
FSmileysEnabled := False;
FBBCodesEnabled := False;
- FMathModuleEnabled := False;
FRawRTFEnabled := False;
FAvatarsHistoryEnabled := False;
@@ -6317,19 +6313,6 @@ begin
end;
end;
-procedure TGridOptions.SetMathModuleEnabled(const Value: Boolean);
-begin
- if FMathModuleEnabled = Value then
- exit;
- FMathModuleEnabled := Value;
- Self.StartChange;
- try
- DoChange;
- finally
- Self.EndChange;
- end;
-end;
-
procedure TGridOptions.SetRawRTFEnabled(const Value: Boolean);
begin
if FRawRTFEnabled = Value then