diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-27 22:34:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-27 22:34:53 +0000 |
commit | 82034484f38eb6a9906c75a9314461c11f17b157 (patch) | |
tree | 4680af3da03b11b5f68f3f79025ef6b95449fd49 /plugins/HistoryPlusPlus/hpp_options.pas | |
parent | d113a646feb2e98ab6314565dc77fd476786a376 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8321 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryPlusPlus/hpp_options.pas')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_options.pas | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_options.pas b/plugins/HistoryPlusPlus/hpp_options.pas index 350ddba32a..15f78b5e70 100644 --- a/plugins/HistoryPlusPlus/hpp_options.pas +++ b/plugins/HistoryPlusPlus/hpp_options.pas @@ -230,8 +230,6 @@ var GridOptions: TGridOptions;
SmileyAddEnabled: Boolean;
MathModuleEnabled: Boolean;
- MetaContactsEnabled: Boolean;
- MetaContactsProto: AnsiString;
MeSpeakEnabled: Boolean;
ShowHistoryCount: Boolean;
hppIcons: array of ThppIntIconsRec;
@@ -553,7 +551,6 @@ var // sarc: SMADD_REGCAT;
i: Integer;
mt: TMessageType;
- str: PAnsiChar;
hppIconPack: String;
begin
// Register in IcoLib
@@ -625,16 +622,7 @@ begin end; }
// Register in MathModule
MathModuleEnabled := boolean(ServiceExists(MATH_RTF_REPLACE_FORMULAE));
- // Checking MetaContacts
- MetaContactsEnabled := boolean(ServiceExists(MS_MC_GETMOSTONLINECONTACT));
- if MetaContactsEnabled then
- begin
- str := PAnsiChar(CallService(MS_MC_GETPROTOCOLNAME, 0, 0));
- if Assigned(str) then
- MetaContactsProto := AnsiString(str)
- else
- MetaContactsEnabled := false;
- end;
+
// Checking presence of speech api
MeSpeakEnabled := boolean(ServiceExists(MS_SPEAK_SAY_W)) or
boolean(ServiceExists(MS_SPEAK_SAY_A));
|