22 lines
773 B
Text
22 lines
773 B
Text
$NetBSD: patch-bk,v 1.1 2007/11/01 13:08:07 rillig Exp $
|
|
|
|
--- src/CurrentWindowCmd.hh.orig 2007-03-19 20:57:09.000000000 +0100
|
|
+++ src/CurrentWindowCmd.hh 2007-11-01 13:47:51.707603000 +0100
|
|
@@ -137,7 +137,7 @@ private:
|
|
// move cmd, relative position
|
|
class MoveCmd: public WindowHelperCmd {
|
|
public:
|
|
- explicit MoveCmd(const int step_size_x, const int step_size_y);
|
|
+ explicit MoveCmd(int step_size_x, int step_size_y);
|
|
protected:
|
|
void real_execute();
|
|
|
|
@@ -170,7 +170,7 @@ public:
|
|
IGNORE_X = 1 << 8,
|
|
IGNORE_Y = 1 << 9
|
|
};
|
|
- explicit MoveToCmd(const int step_size_x, const int step_size_y, const unsigned int refc);
|
|
+ explicit MoveToCmd(int step_size_x, int step_size_y, unsigned int refc);
|
|
protected:
|
|
void real_execute();
|
|
|