author | mouse <mouse> | 2004-01-05 14:10:39 (UTC) |
---|---|---|
committer | mouse <mouse> | 2004-01-05 14:10:39 (UTC) |
commit | 7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5 (patch) (side-by-side diff) | |
tree | 8f16b6c4e52eaca3d0d6c763f3cf938459653801 /inputmethods/multikey | |
parent | 4fca3779614c863443ff09295fd0af19b9d9310e (diff) | |
download | opie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.zip opie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.tar.gz opie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.tar.bz2 |
configdlg now based on QDialog, instead of QTabWidget
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index d29109a..3e39415 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp @@ -358,16 +358,13 @@ void ConfigDlg::closeEvent(QCloseEvent *) { // tell the parent it was closed, so delete me emit configDlgClosed(); } void ConfigDlg::setMap(int index) { - if (index == 0) { - remove_button->setDisabled(true); - } - else if (default_maps.find(sw_maps[index-1]) != default_maps.end()) { + if (index == 0 || default_maps.find(sw_maps[index-1]) != default_maps.end()) { remove_button->setDisabled(true); } else { remove_button->setEnabled(true); } } |