Merge pull request #515 from OH1KH/gtk3_compiles

Using GTK3
This commit is contained in:
Petr Hlozek 2022-06-11 15:02:19 +02:00 committed by GitHub
commit f4d5d1e48d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -76,6 +76,10 @@ implementation
{$i lclgtkeventer.inc}
{$endif}
{$ifdef LCLGTK3}
{$i lclgtkeventer.inc}
{$endif}
{$ifdef LCLQT}
{$i lclgtkeventer.inc} // identical code ;)
{$endif}

View File

@ -8,6 +8,9 @@ const
{$IFDEF LCLGtk2}
cVERSION = cVersionBase+' Gtk2';
{$ENDIF}
{$IFDEF LCLGtk3}
cVERSION = cVersionBase+' Gtk3';
{$ENDIF}
{$IFDEF LCLQt5}
cVERSION = cVersionBase+' QT5';
@ -18,7 +21,7 @@ const
cRELEAS = 0;
cBUILD = 1;
cBUILD_DATE = '2022-06-29';
cBUILD_DATE = '2022-06-08';
implementation