From c4c50c8468b607da19ccee21c92837c2d4b39efc Mon Sep 17 00:00:00 2001 From: zecke Date: Wed, 23 Oct 2002 19:53:47 +0000 Subject: 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 --- (limited to 'noncore/apps/opie-console') 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 @@ -11,6 +11,10 @@ Send/receive: lrzsz behaves strange when trying to use - keys and buttonbar merge - keys really working + mc is working + but F11 on bar seems to be the F10 key and so on + F9 is F8... -zecke + Should be fixed -zecke - scripting with "direct subpopup" 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 @@ -190,13 +190,14 @@ void FunctionKeyboard::loadDefaults() { FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* parent, const char* na ) : ProfileDialogKeyWidget(name, parent, na) { + qWarning("FunctionKeyboardConfig"); kb = new FunctionKeyboard(this); QGroupBox *dimentions = new QGroupBox(2, Qt::Horizontal, tr("Dimentions"), this); QLabel *l = new QLabel("Rows", dimentions); - QSpinBox *m_rowBox = new QSpinBox(1, 15, 1, dimentions); + m_rowBox = new QSpinBox(1, 15, 1, dimentions); connect (m_rowBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeRows(int))); l = new QLabel("Columns", dimentions); m_colBox = new QSpinBox(1, 15, 1, dimentions); -- cgit v0.9.0.2