OSDN Git Service

Warn if SPP is not installed when preview style is ImageConversation
authornaru <bottle@mikage.to>
Sun, 20 Apr 2003 07:55:37 +0000 (07:55 +0000)
committernaru <bottle@mikage.to>
Sun, 20 Apr 2003 07:55:37 +0000 (07:55 +0000)
bottleclient/LogForm.pas

index c71b67c..ad34f67 100755 (executable)
@@ -6,7 +6,7 @@ uses
   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
   ComCtrls, ToolWin, StdCtrls, ExtCtrls, SsParser, BottleDef, Menus,
   Clipbrd, Logs, ShellAPI, Commctrl, DirectSstp, Contnrs, StrUtils,
-  TalkShowFrame;
+  TalkShowFrame, SppList;
 
 type
   TSaveLogType = (stLog, stLogWithChannels, stText, stXML);
@@ -1247,6 +1247,8 @@ procedure TfrmLog.PreviewStyleChange;
 begin
   if Pref.LogWindowPreviewStyle = psImageConversation then
   begin
+    if Spps.Count = 0 then
+      ShowMessage('\83T\81[\83t\83B\83X\83v\83\8c\83r\83\85\81[\97p\83v\83\89\83O\83C\83\93\82ª\91\8dÝ\82µ\82Ü\82¹\82ñ\81B');
     edtScript.Visible := false;
     TalkShowFrame.Visible := true;
   end else