diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-12-01 15:25:07 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-12-01 15:25:17 +0100 |
| commit | ccc21d381a41620a9fb91870ab2a47ef9309d148 (patch) | |
| tree | df0153790e2b95dabe7c5c24598a04316085cea7 /fluid/Fl_Window_Type.cxx | |
| parent | 1077d749585dbb0778b8155f35c7c1fa2d0ee601 (diff) | |
Fixes a few minor compiler warnings.
Diffstat (limited to 'fluid/Fl_Window_Type.cxx')
| -rw-r--r-- | fluid/Fl_Window_Type.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/Fl_Window_Type.cxx b/fluid/Fl_Window_Type.cxx index 71ea0d9b6..db9ec34ba 100644 --- a/fluid/Fl_Window_Type.cxx +++ b/fluid/Fl_Window_Type.cxx @@ -322,7 +322,7 @@ uchar *Fl_Window_Type::read_image(int &ww, int &hh) { } void Fl_Window_Type::ideal_size(int &w, int &h) { - w = 480, h = 320; + w = 480; h = 320; if (main_window) { int sx, sy, sw, sh; Fl_Window *win = main_window; |
