aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-09-29 14:58:15 (GMT)
committerrathnor <rathnor>2003-09-29 14:58:15 (GMT)
commit81378f9494db4ab1d033947532d7fac968095ecd (patch)
tree0980a0ed9e2ebcbb2d7b7c88d6fbe1d98ab06dd2 /src/Window.hh
parent15dfe811124e3f1be7d9a802290372427dae5afb (diff)
downloadfluxbox-81378f9494db4ab1d033947532d7fac968095ecd.zip
fluxbox-81378f9494db4ab1d033947532d7fac968095ecd.tar.bz2
fix handling of base_Width/height hints in wm_normal_hints
- fixes abiword resize issues
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Window.hh b/src/Window.hh
index e023253..9d94166 100644
--- a/src/Window.hh
+++ b/src/Window.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.hh,v 1.96 2003/09/29 12:53:58 rathnor Exp $ 25// $Id: Window.hh,v 1.97 2003/09/29 14:58:15 rathnor Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -398,7 +398,8 @@ private:
398 398
399 // modifies left and top if snap is necessary 399 // modifies left and top if snap is necessary
400 void doSnapping(int &left, int &top); 400 void doSnapping(int &left, int &top);
401 void fixsize(int *x = 0, int *y = 0); 401 // user_w/h return the values that should be shown to the user
402 void fixsize(int *user_w = 0, int *user_h = 0);
402 void resizeClient(WinClient &client, unsigned int width, unsigned int height); 403 void resizeClient(WinClient &client, unsigned int width, unsigned int height);
403 /// sends configurenotify to all clients 404 /// sends configurenotify to all clients
404 void sendConfigureNotify(bool send_to_netizens = true); 405 void sendConfigureNotify(bool send_to_netizens = true);