jvcllaz: Some cleanup of JvTimeFramework components

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7103 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-08-08 12:37:48 +00:00
parent 4419a00c53
commit 8ae9d36333
5 changed files with 1 additions and 21 deletions

View File

@ -68,9 +68,6 @@ type
TJvTFAlarmEvent = procedure(Sender: TObject; AAppt: TJvTFAppt;
var SnoozeMins: Integer; var Dismiss: Boolean) of object;
{$IFDEF RTL230_UP}
[ComponentPlatformsAttribute(pidWin32 or pidWin64)]
{$ENDIF RTL230_UP}
TJvTFAlarm = class(TJvTFComponent)
private
FResources: TStringList;

View File

@ -32,7 +32,7 @@ interface
uses
LCLIntf, LCLType, LMessages,
SysUtils, Classes, {Windows, Messages, } Graphics, Controls, Forms, Dialogs, ImgList,
SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ImgList,
JvTFUtils, JvTFManager;
type

View File

@ -436,9 +436,6 @@ type
TJvTFApptDescEvent = procedure(Sender: TObject; Appt: TJvTFAppt;
var Description: string) of object;
{$IFDEF RTL230_UP}
[ComponentPlatformsAttribute(pidWin32 or pidWin64)]
{$ENDIF RTL230_UP}
TJvTFScheduleManager = class(TComponent)
private
FAlwaysPost: Boolean;
@ -960,9 +957,6 @@ type
property Title: string read FTitle write SetTitle;
end;
{$IFDEF RTL230_UP}
[ComponentPlatformsAttribute(pidWin32 or pidWin64)]
{$ENDIF RTL230_UP}
TJvTFUniversalPrinter = class(TJvTFPrinter)
public
procedure NewDoc; override;

View File

@ -27,7 +27,6 @@ Known Issues:
unit JvTFMonths;
{$mode objfpc}{$H+}
//{$mode delphi}
interface

View File

@ -31,19 +31,9 @@ unit JvTFUtils;
interface
uses
//Windows,
LCLType, LCLIntf, Types,
Graphics, Controls, Classes, SysUtils;
(*
{$IFNDEF COMPILER12_UP} // Delphi 2009 knows System::TDate and System::TTime
{$HPPEMIT '#ifndef TDate'}
{$HPPEMIT '#define TDate Controls::TDate'}
{$HPPEMIT '#define TTime Controls::TTime'}
{$HPPEMIT '#endif'}
{$ENDIF ~COMPILER12_UP}
*)
type
TJvTFVisibleScrollBars = set of (vsbHorz, vsbVert);
EJvTFDateError = class(Exception);