all repos — fluxbox @ 89e769e4bffab01397a0fb943e7cedc1d2aad00c

custom fork of the fluxbox windowmanager

minor fixes
fluxgen fluxgen
commit

89e769e4bffab01397a0fb943e7cedc1d2aad00c

parent

a0604948fe6272ce23040285137f4a6d456612be

2 files changed, 4 insertions(+), 4 deletions(-)

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

@@ -19,12 +19,12 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: ArrowButton.cc,v 1.4 2003/08/13 09:38:09 fluxgen Exp $ +// $Id: ArrowButton.cc,v 1.5 2003/10/13 23:51:04 fluxgen Exp $ #include "ArrowButton.hh" ArrowButton::ArrowButton(ArrowButton::Type arrow_type, - FbTk::FbWindow &parent, + const FbTk::FbWindow &parent, int x, int y, unsigned int width, unsigned int height): FbTk::Button(parent, x, y, width, height),
M src/ArrowButton.hhsrc/ArrowButton.hh

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: ArrowButton.hh,v 1.3 2003/05/17 11:30:59 fluxgen Exp $ +// $Id: ArrowButton.hh,v 1.4 2003/10/13 23:51:04 fluxgen Exp $ #ifndef ARROWBUTTON_HH #define ARROWBUTTON_HH

@@ -31,7 +31,7 @@ class ArrowButton: public FbTk::Button {

public: enum Type { LEFT, RIGHT, UP, DOWN}; - ArrowButton(Type arrow_type, FbTk::FbWindow &parent, + ArrowButton(Type arrow_type, const FbTk::FbWindow &parent, int x, int y, unsigned int width, unsigned int height); ArrowButton(Type arrow_type, int screen_num,