tvplanit: Bring back TTimeEdit lost in a previous commit.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5037 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-07-26 13:02:32 +00:00
parent 6c2d1ede9b
commit 990112f3ff
2 changed files with 8 additions and 4 deletions

View File

@@ -150,8 +150,9 @@ uses
{$UNDEF UTF8_CALLS}
{$IFDEF LCL}
{$IF lcl_fullversion >= 3000000}
{$DEFINE UTF8_CALLS}
{$DEFINE UTF8_CALLS}
{$IF lcl_major=1 and (lcl_minor<6)}
{$UNDDEF UTF8_CALLS}
{$ENDIF}
{$ENDIF}

View File

@@ -45,10 +45,13 @@ uses
const
blabla = 1; // to make the $IF work in Laz 1.4.4. Why?
{$UNDEF NEW_TIME_EDIT}
{$IFDEF LCL}
{$IF lcl_fullversion >= 3000000}
{$DEFINE NEW_TIME_EDIT}
{$DEFINE NEW_TIME_EDIT}
{$IF (lcl_major=1) and (lcl_minor<6)}
{$UNDEF NEW_TIME_EDIT}
{$ENDIF}
{$ENDIF}