summaryrefslogtreecommitdiff
path: root/noncore
authorerik <erik>2007-01-29 21:33:42 (UTC)
committer erik <erik>2007-01-29 21:33:42 (UTC)
commit777cace646507cf4222f0a6d5beb2cd44ec45a0a (patch) (side-by-side diff)
treef6829136208c3f5929d82feffe0dd132194431e3 /noncore
parent5a58a5974cb4dd017e6989d5ebca876b5764b0df (diff)
downloadopie-777cace646507cf4222f0a6d5beb2cd44ec45a0a.zip
opie-777cace646507cf4222f0a6d5beb2cd44ec45a0a.tar.gz
opie-777cace646507cf4222f0a6d5beb2cd44ec45a0a.tar.bz2
Strictly removal of cruft (commented out old code).
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index 389618c..c3209f4 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -17,28 +17,6 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) :
setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed));
- /*
- * all the saving/loading is now done in a profile. downside is that you cant modify
- * the keyboard for all profiles, but must do it on a profile-basis
- *
-
- Config conf("opie-console-keys");
- conf.setGroup("keys");
- for (uint r = 0; r < numRows; r++)
- for (uint c = 0; c < numCols; c++) {
-
- QString handle = "r" + QString::number(r) + "c" + QString::number(c);
- QStringList value_list = conf.readListEntry( handle, '|');
-
- if (value_list.isEmpty()) continue;
-
- keys.insert(
-
- handle,
- FKey (value_list[0], value_list[1], value_list[2].toUShort(), value_list[3].toUShort())
- );
- }
- */
if (keys.isEmpty()) loadDefaults();