From c88466928db4ecdeb4e6c6eb84c873319d02ec7d Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Fri, 28 Jul 2017 15:51:05 +0000 Subject: Replace static protected bool Fl_Window_Driver::is_a_rescale by a private static variable and a public getter. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12364 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Group.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Fl_Group.cxx') diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx index 992f1c61f..a0ca7b7fd 100644 --- a/src/Fl_Group.cxx +++ b/src/Fl_Group.cxx @@ -700,7 +700,7 @@ void Fl_Group::resize(int X, int Y, int W, int H) { Fl_Widget::resize(X,Y,W,H); // make new xywh values visible for children - if ((!resizable() || (dw==0 && dh==0 )) && !Fl_Window_Driver::is_a_rescale) { + if ((!resizable() || (dw==0 && dh==0 )) && !Fl_Window_Driver::is_a_rescale()) { if (!as_window()) { Fl_Widget*const* a = array(); -- cgit v1.2.3