author | zecke <zecke> | 2002-10-23 19:53:47 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-23 19:53:47 (UTC) |
commit | c4c50c8468b607da19ccee21c92837c2d4b39efc (patch) (unidiff) | |
tree | e09dada3b875dd3badc542877fa877c9c57b88fe | |
parent | 748f658f5102a50502cd060d50b35fded71356c3 (diff) | |
download | opie-c4c50c8468b607da19ccee21c92837c2d4b39efc.zip opie-c4c50c8468b607da19ccee21c92837c2d4b39efc.tar.gz opie-c4c50c8468b607da19ccee21c92837c2d4b39efc.tar.bz2 |
Fix stupid bug in function_keyboard
class Doo{
public:
Doo (){
Foo* m_foo = new Foo();
}
void do(){
m_foo->woot()
}
private
Foo* m_foo
};
what is wrong in the above code?
cvslastchange for the answer
-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 | |||
@@ -13,2 +13,6 @@ Send/receive: lrzsz behaves strange when trying to use | |||
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 | ||
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 | |||
@@ -192,2 +192,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par | |||
192 | : ProfileDialogKeyWidget(name, parent, na) { | 192 | : ProfileDialogKeyWidget(name, parent, na) { |
193 | qWarning("FunctionKeyboardConfig"); | ||
193 | 194 | ||
@@ -198,3 +199,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par | |||
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))); |