all repos — openbox @ 175a7e5d1c738c70ec157c05b5de9d404cfe2df5

openbox fork - make it a bit more like ryudo

sync with bb-cvs
Dana Jansens danakj@orodu.net
commit

175a7e5d1c738c70ec157c05b5de9d404cfe2df5

parent

0f710360990e6d079116d951295c21664e2e0fce

3 files changed, 3 insertions(+), 3 deletions(-)

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

@@ -41,7 +41,7 @@ #include "Image.hh"

#include "Texture.hh" -BImage::BImage(BImageControl *c, unsigned int w, unsigned int h) { +BImage::BImage(BImageControl *c, int w, int h) { control = c; width = (w > 0) ? w : 1;
M src/Image.hhsrc/Image.hh

@@ -77,7 +77,7 @@ void pcgradient(void);

public: - BImage(BImageControl *c, unsigned int w, unsigned int h); + BImage(BImageControl *c, int w, int h); ~BImage(void); Pixmap render(const BTexture &texture);
M src/Window.ccsrc/Window.cc

@@ -1426,7 +1426,7 @@ client.transient_for->client.transientList.remove(this);

} // we have no transient_for until we find a new one - client.transient_for = 0; + client.transient_for = (BlackboxWindow *) 0; Window trans_for; if (! XGetTransientForHint(blackbox->getXDisplay(), client.window,