mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-26 09:41:02 +02:00
fix for fpc 1.0.7
git-svn-id: trunk@3727 -
This commit is contained in:
parent
4e54229b87
commit
1ad598c9a6
@ -209,7 +209,11 @@ begin
|
||||
gtk_style_set_background (Widget^.theStyle, Widget^.Window, GTK_STATE_NORMAL);
|
||||
// gdk_window_set_background(Widget^.Window, @PGTKStyle(Widget^.theStyle)^.Base[gtk_widget_state(Widget)]);
|
||||
// gdk_window_set_background (Client^.OtherWindow, @PGTKStyle(Widget^.theStyle)^.Base[gtk_widget_state(Widget)]);
|
||||
{$IFDEF VER1_0}
|
||||
gdk_window_set_back_pixmap(Widget^.Window,nil,0);
|
||||
{$ELSE}
|
||||
gdk_window_set_back_pixmap(Widget^.Window,nil,false);
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
procedure GTKAPIWidgetClient_UnRealize(Widget: PGTKWidget); cdecl;
|
||||
@ -777,6 +781,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.41 2002/12/23 10:23:45 mattias
|
||||
fix for fpc 1.0.7
|
||||
|
||||
Revision 1.40 2002/12/23 10:12:40 mattias
|
||||
added symlink test and unit types
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user