[Lazarus] Gtk1-Gtk2 splitup.
dmitry boyarintsev
skalogryz.lists at gmail.com
Thu Jun 10 10:46:04 CEST 2010
On Thu, Jun 10, 2010 at 12:37 PM, Marc Weustink <marc at dommelstein.net> wrote:
> Last night the separation og gtk2 from the gtk1 widgetset became a fact and
> it got merged into trunk.
If you've any libraries/components with a Gtk2/Gtk1 specific code,
please make sure that you don't use gtk1 for Gtk2 widgetset code.
i.e:
uses
{$ifdef LCLGtk2}GtkInt, Gtk2Int{$endif}
Should be replaced with:
uses
{$ifdef LCLGtk2}gtk2Int{$endif} // GtkInt is not available anymore
for Gtk2 widgetset.
thanks,
dmitry
More information about the Lazarus
mailing list