From b615117dff5311f4dae0097acca865a323e6d097 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 5 Mar 2010 02:31:33 +0000 Subject: [PATCH] typo: has_fixed_size -> get_fixed_size --- panda/src/egldisplay/eglGraphicsWindow.cxx | 2 +- panda/src/x11display/x11GraphicsWindow.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/egldisplay/eglGraphicsWindow.cxx b/panda/src/egldisplay/eglGraphicsWindow.cxx index fe96f6d378..06250ec2a1 100644 --- a/panda/src/egldisplay/eglGraphicsWindow.cxx +++ b/panda/src/egldisplay/eglGraphicsWindow.cxx @@ -827,7 +827,7 @@ set_wm_properties(const WindowProperties &properties, bool already_mapped) { size_hints_p->height = properties.get_y_size(); size_hints_p->flags |= USSize; - if (properties.has_fixed_size()) { + if (properties.get_fixed_size()) { size_hints_p->min_width = properties.get_x_size(); size_hints_p->min_height = properties.get_y_size(); size_hints_p->max_width = properties.get_x_size(); diff --git a/panda/src/x11display/x11GraphicsWindow.cxx b/panda/src/x11display/x11GraphicsWindow.cxx index e6bd7a15e9..ccdef52f1f 100644 --- a/panda/src/x11display/x11GraphicsWindow.cxx +++ b/panda/src/x11display/x11GraphicsWindow.cxx @@ -948,7 +948,7 @@ set_wm_properties(const WindowProperties &properties, bool already_mapped) { size_hints_p->height = properties.get_y_size(); size_hints_p->flags |= USSize; - if (properties.has_fixed_size()) { + if (properties.get_fixed_size()) { size_hints_p->min_width = properties.get_x_size(); size_hints_p->min_height = properties.get_y_size(); size_hints_p->max_width = properties.get_x_size();