aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Keys.cc3
-rw-r--r--src/Keys.hh3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index 9b15afb..7e0d907 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: Keys.cc,v 1.13 2002/03/18 20:25:42 fluxgen Exp $ 22//$Id: Keys.cc,v 1.14 2002/04/09 09:40:18 fluxgen Exp $
23 23
24#ifdef HAVE_CONFIG_H 24#ifdef HAVE_CONFIG_H
25# include "config.h" 25# include "config.h"
@@ -123,6 +123,7 @@ Keys::t_actionstr Keys::m_actionlist[] = {
123 {"HorizontalDecrement", HORIZDEC}, 123 {"HorizontalDecrement", HORIZDEC},
124 {"VerticalDecrement", VERTDEC}, 124 {"VerticalDecrement", VERTDEC},
125 {"ToggleDecor", TOGGLEDECOR}, 125 {"ToggleDecor", TOGGLEDECOR},
126 {"RootMenu", ROOTMENU},
126 {0, LASTKEYGRAB} 127 {0, LASTKEYGRAB}
127 }; 128 };
128 129
diff --git a/src/Keys.hh b/src/Keys.hh
index 32c53de..31f4734 100644
--- a/src/Keys.hh
+++ b/src/Keys.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: Keys.hh,v 1.9 2002/02/26 22:20:24 fluxgen Exp $ 22// $Id: Keys.hh,v 1.10 2002/04/09 09:40:18 fluxgen Exp $
23 23
24#ifndef KEYS_HH 24#ifndef KEYS_HH
25#define KEYS_HH 25#define KEYS_HH
@@ -53,6 +53,7 @@ public:
53 BIGNUDGERIGHT, BIGNUDGELEFT, BIGNUDGEUP, BIGNUDGEDOWN, 53 BIGNUDGERIGHT, BIGNUDGELEFT, BIGNUDGEUP, BIGNUDGEDOWN,
54 HORIZINC, VERTINC, HORIZDEC, VERTDEC, 54 HORIZINC, VERTINC, HORIZDEC, VERTDEC,
55 TOGGLEDECOR, 55 TOGGLEDECOR,
56 ROOTMENU,
56 LASTKEYGRAB 57 LASTKEYGRAB
57 }; 58 };
58 59