diff options
| author | Manolo Gouy <Manolo> | 2016-03-23 18:00:37 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-03-23 18:00:37 +0000 |
| commit | fdaad858ba78ac232df8b5a7d6f1ab3a64680a6c (patch) | |
| tree | 47cf7aaf6cd8622f8ec4253cc209b6fce948ca34 /src/Fl_win32.cxx | |
| parent | e3ee1e7b81c9b1a8806b80cd69c66eeccc679bf9 (diff) | |
Rewrite Fl_Window::iconize() under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11411 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_win32.cxx')
| -rw-r--r-- | src/Fl_win32.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index ef83d833e..72d191617 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1643,7 +1643,6 @@ private: void fl_fix_focus(); // in Fl.cxx -char fl_show_iconic; // hack for Fl_Window::iconic() // int fl_background_pixel = -1; // color to use for background UINT fl_wake_msg = 0; int fl_disable_transient_for; // secret method of removing TRANSIENT_FOR @@ -1846,7 +1845,7 @@ Fl_X* Fl_X::make(Fl_Window* w) { fl_clipboard_notify_target(x->xid); x->wait_for_expose = 1; - if (fl_show_iconic) {showit = 0; fl_show_iconic = 0;} + if (Fl_Window::show_iconic_) {showit = 0; Fl_Window::show_iconic_ = 0;} if (showit) { w->set_visible(); int old_event = Fl::e_number; |
