all repos — fluxbox @ cf56f32b29ae3007eb538731221b00d1945799ae

custom fork of the fluxbox windowmanager

Remove unused variables, cosmetics
Mathias Gumz akira at fluxbox dot org
commit

cf56f32b29ae3007eb538731221b00d1945799ae

parent

b0391221820e2104c2a8b66b5669139ab7bff8d0

1 files changed, 16 insertions(+), 16 deletions(-)

jump to
M src/Remember.ccsrc/Remember.cc

@@ -1321,28 +1321,28 @@ if (app->dimensions_remember) {

int win_w, win_h; if(app->dimension_is_relative) { - int head = screen.getHead(win.fbWindow()); - int screen_y = screen.maxBottom(head) - screen.maxTop(head); - win_w = screen.calRelativeWidth(head, app->w); - win_h = screen.calRelativeHeight(head, app->h); + int head = screen.getHead(win.fbWindow()); + win_w = screen.calRelativeWidth(head, app->w); + win_h = screen.calRelativeHeight(head, app->h); } else { - win_w = app->w; - win_h = app->h; + win_w = app->w; + win_h = app->h; } win.resize(win_w, win_h); } if (app->position_remember) { - int newx, newy; - if(app->position_is_relative) { - int head = screen.getHead(win.fbWindow()); - newx = screen.calRelativeWidth(head, app->x); - newy = screen.calRelativeHeight(head, app->y); - } else { - newx = app->x, newy = app->y; - } - win.translateCoords(newx, newy, app->refc); - win.move(newx, newy); + int newx, newy; + if(app->position_is_relative) { + int head = screen.getHead(win.fbWindow()); + newx = screen.calRelativeWidth(head, app->x); + newy = screen.calRelativeHeight(head, app->y); + } else { + newx = app->x; + newy = app->y; + } + win.translateCoords(newx, newy, app->refc); + win.move(newx, newy); } if (app->shadedstate_remember)