author | hash <hash> | 2002-08-21 20:00:48 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-21 20:00:48 (UTC) |
commit | 10739e8b7d203e56ef30011770f6d12d8b0bb270 (patch) (unidiff) | |
tree | 341451202d077ed4bdf16beb696a94e494c7693c /inputmethods/multikey | |
parent | 33fb38da29cfb4b29eff08928742b8d6918eb852 (diff) | |
download | opie-10739e8b7d203e56ef30011770f6d12d8b0bb270.zip opie-10739e8b7d203e56ef30011770f6d12d8b0bb270.tar.gz opie-10739e8b7d203e56ef30011770f6d12d8b0bb270.tar.bz2 |
fixed bug where it adds blank lines to the keymap list
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index a9137b9..9ea59a4 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp | |||
@@ -245,6 +245,9 @@ void ConfigDlg::setMap(int index) { | |||
245 | void ConfigDlg::addMap() { | 245 | void ConfigDlg::addMap() { |
246 | 246 | ||
247 | QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath()); | 247 | QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath()); |
248 | |||
249 | if (map.isNull()) return; | ||
250 | |||
248 | Config config ("multikey"); | 251 | Config config ("multikey"); |
249 | config.setGroup("keymaps"); | 252 | config.setGroup("keymaps"); |
250 | QStringList maps = config.readListEntry("maps", QChar('|')); | 253 | QStringList maps = config.readListEntry("maps", QChar('|')); |