changed GTK2 IFDEF to USE_UTF8BIDI_LCL

git-svn-id: trunk@5894 -
This commit is contained in:
mattias 2004-08-30 16:11:02 +00:00
parent 75d71f9804
commit 3fca394b77
4 changed files with 18 additions and 7 deletions

View File

@ -56,7 +56,8 @@ uses
{$ENDIF}
SynEdit,
SynEditKeyCmds,
Controls;
Controls,
LCLType;
type
TAbstractSynPlugin = class(TComponent)

View File

@ -159,11 +159,6 @@ const
type
{$IFDEF GTK2}
TCharacter = WideChar;
{$ELSE GTK2}
TCharacter = Char;
{$ENDIF GTK2}
TWinControl = class;
TControl = class;
TWinControlClass = class of TWinControl;
@ -2410,6 +2405,9 @@ end.
{ =============================================================================
$Log$
Revision 1.241 2004/08/30 16:11:02 mattias
changed GTK2 IFDEF to USE_UTF8BIDI_LCL
Revision 1.240 2004/08/26 19:09:33 mattias
moved navigation key handling to TApplication and added options for custom navigation

View File

@ -37,7 +37,8 @@ interface
uses
Classes, SysUtils, DB, LCLProc, LMessages, GraphType, Forms, Controls,
Graphics, Dialogs, StdCtrls, Buttons, MaskEdit, ExtCtrls, Calendar;
Graphics, Dialogs, StdCtrls, Buttons, MaskEdit, ExtCtrls, Calendar,
LCLType;
Type
{ TFieldDataLink }
@ -1247,6 +1248,9 @@ end.
{ =============================================================================
$Log$
Revision 1.21 2004/08/30 16:11:02 mattias
changed GTK2 IFDEF to USE_UTF8BIDI_LCL
Revision 1.20 2004/08/30 10:49:20 mattias
fixed focus catch for combobox csDropDownList

View File

@ -52,6 +52,11 @@ uses
Classes, SysUtils;
type
{$IFDEF USE_UTF8BIDI_LCL}
TCharacter = WideChar;
{$ELSE USE_UTF8BIDI_LCL}
TCharacter = Char;
{$ENDIF USE_UTF8BIDI_LCL}
PRect = ^TRect;
UINT = LongWord;
PPoint = ^TPoint;
@ -2233,6 +2238,9 @@ end.
{
$Log$
Revision 1.64 2004/08/30 16:11:02 mattias
changed GTK2 IFDEF to USE_UTF8BIDI_LCL
Revision 1.63 2004/08/18 09:31:21 mattias
removed obsolete unit vclglobals