-rw-r--r-- | noncore/apps/opie-console/BUGS | 4 | ||||
-rw-r--r-- | noncore/apps/opie-console/function_keyboard.cpp | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/BUGS b/noncore/apps/opie-console/BUGS index 23a1026..2f66df1 100644 --- a/noncore/apps/opie-console/BUGS +++ b/noncore/apps/opie-console/BUGS | |||
@@ -8,12 +8,16 @@ Send/receive: lrzsz behaves strange when trying to use | |||
8 | 8 | ||
9 | - console should autoconnect by default | 9 | - console should autoconnect by default |
10 | 10 | ||
11 | - keys and buttonbar merge | 11 | - keys and buttonbar merge |
12 | 12 | ||
13 | - keys really working | 13 | - keys really working |
14 | mc is working | ||
15 | but F11 on bar seems to be the F10 key and so on | ||
16 | F9 is F8... -zecke | ||
17 | Should be fixed -zecke | ||
14 | 18 | ||
15 | - scripting with "direct subpopup" | 19 | - scripting with "direct subpopup" |
16 | 20 | ||
17 | - kill more compiler warnings. | 21 | - kill more compiler warnings. |
18 | 22 | ||
19 | - more colorshemes ( "orange is ugly" ) | 23 | - more colorshemes ( "orange is ugly" ) |
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp index c314949..b2f1c78 100644 --- a/noncore/apps/opie-console/function_keyboard.cpp +++ b/noncore/apps/opie-console/function_keyboard.cpp | |||
@@ -187,19 +187,20 @@ void FunctionKeyboard::loadDefaults() { | |||
187 | } | 187 | } |
188 | 188 | ||
189 | /* FunctionKeyboardConfig {{{1 */ | 189 | /* FunctionKeyboardConfig {{{1 */ |
190 | 190 | ||
191 | FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* parent, const char* na ) | 191 | FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* parent, const char* na ) |
192 | : ProfileDialogKeyWidget(name, parent, na) { | 192 | : ProfileDialogKeyWidget(name, parent, na) { |
193 | qWarning("FunctionKeyboardConfig"); | ||
193 | 194 | ||
194 | 195 | ||
195 | kb = new FunctionKeyboard(this); | 196 | kb = new FunctionKeyboard(this); |
196 | 197 | ||
197 | QGroupBox *dimentions = new QGroupBox(2, Qt::Horizontal, tr("Dimentions"), this); | 198 | QGroupBox *dimentions = new QGroupBox(2, Qt::Horizontal, tr("Dimentions"), this); |
198 | QLabel *l = new QLabel("Rows", dimentions); | 199 | QLabel *l = new QLabel("Rows", dimentions); |
199 | QSpinBox *m_rowBox = new QSpinBox(1, 15, 1, dimentions); | 200 | m_rowBox = new QSpinBox(1, 15, 1, dimentions); |
200 | connect (m_rowBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeRows(int))); | 201 | connect (m_rowBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeRows(int))); |
201 | l = new QLabel("Columns", dimentions); | 202 | l = new QLabel("Columns", dimentions); |
202 | m_colBox = new QSpinBox(1, 15, 1, dimentions); | 203 | m_colBox = new QSpinBox(1, 15, 1, dimentions); |
203 | connect (m_colBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeCols(int))); | 204 | connect (m_colBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeCols(int))); |
204 | 205 | ||
205 | QGroupBox *editKey = new QGroupBox(2, Qt::Horizontal, tr("Edit Key"), this); | 206 | QGroupBox *editKey = new QGroupBox(2, Qt::Horizontal, tr("Edit Key"), this); |