diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-04 05:18:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-04 05:18:33 +0000 |
| commit | bf404e092be46801b1a78f9a71e10d0d00b75894 (patch) | |
| tree | 5beb02abff23d8cc1e019206d5f7d2ade7f8fc08 /otk/widget.hh | |
| parent | e3b50c2d137ba194073dc062edf73e79c18b7fe8 (diff) | |
make the frame window override-redirect
Diffstat (limited to 'otk/widget.hh')
| -rw-r--r-- | otk/widget.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/widget.hh b/otk/widget.hh index 8d3bfb23..337bbf14 100644 --- a/otk/widget.hh +++ b/otk/widget.hh @@ -28,7 +28,7 @@ public: OtkWidget(otk::OtkWidget *parent, Direction = Horizontal); OtkWidget(otk::OtkEventDispatcher *event_dispatcher, otk::Style *style, Direction direction = Horizontal, Cursor cursor = 0, - int bevel_width = 1, unsigned long create_mask = 0); + int bevel_width = 1, bool override_redirect = false); virtual ~OtkWidget(); @@ -126,7 +126,7 @@ protected: bool _focused; virtual void adjust(void); - virtual void create(unsigned long mask = 0); + virtual void create(bool override_redirect = false); virtual void adjustHorz(void); virtual void adjustVert(void); virtual void internalResize(int width, int height); |
