summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorzecke <zecke>2002-10-23 19:53:47 (UTC)
committer zecke <zecke>2002-10-23 19:53:47 (UTC)
commitc4c50c8468b607da19ccee21c92837c2d4b39efc (patch) (side-by-side diff)
treee09dada3b875dd3badc542877fa877c9c57b88fe /noncore/apps/opie-console
parent748f658f5102a50502cd060d50b35fded71356c3 (diff)
downloadopie-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
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/BUGS4
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp3
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
@@ -2,23 +2,27 @@ Ok we all know we write perfect code
but sometimes the compiler produces bad code
and we need to work around some compiler bugs!! -zecke
Send/receive: lrzsz behaves strange when trying to use
--overwrite or --rename.
- console should autoconnect by default
- 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"
- kill more compiler warnings.
- more colorshemes ( "orange is ugly" )
- irda and bluetooth out ( can be done with normal serial as long as the
connection is allready up, and extended stuff is a lot of work; maybe later
in again ).
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
@@ -181,31 +181,32 @@ void FunctionKeyboard::loadDefaults() {
keys.insert( "r1c7", FKey ("Ho", 4112, 0));
keys.insert( "r1c8", FKey ("End", 4113, 0));
keys.insert( "r1c9", FKey ("PU", 4118, 0));
keys.insert( "r1c10", FKey ("PD", 4119, 0));
}
/* FunctionKeyboardConfig {{{1 */
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);
connect (m_colBox, SIGNAL(valueChanged(int)), this, SLOT(slotChangeCols(int)));
QGroupBox *editKey = new QGroupBox(2, Qt::Horizontal, tr("Edit Key"), this);
l = new QLabel("Label", editKey);
/*
m_labels = new QComboBox(false, editKey);
labels->insertItem("text");
QStringList files = QDir(QPEApplication::qpeDir() + "pics/console/keys/", "*.png").entryList();