summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/configdlg.cpp
authorharlekin <harlekin>2004-06-20 13:19:19 (UTC)
committer harlekin <harlekin>2004-06-20 13:19:19 (UTC)
commit9f4c73fe369f2a8052323c2b1ae21f3ce133b9fd (patch) (side-by-side diff)
treee5e0e4eb966be59ef350ac92710682857b006e15 /noncore/apps/odict/configdlg.cpp
parent3d49080501c6619f9bb323be9935d28f4458530f (diff)
downloadopie-9f4c73fe369f2a8052323c2b1ae21f3ce133b9fd.zip
opie-9f4c73fe369f2a8052323c2b1ae21f3ce133b9fd.tar.gz
opie-9f4c73fe369f2a8052323c2b1ae21f3ce133b9fd.tar.bz2
BUGFIX: 0001325 - no double dialog start in odict, when using QDialog::exec don't use it together with QPEApplication::execDialog() but with QPEApplication::showDialog(), also fixed another bug where shadow entries where created after deletion of entries
Diffstat (limited to 'noncore/apps/odict/configdlg.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/configdlg.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp
index 7fa6008..3d98f63 100644
--- a/noncore/apps/odict/configdlg.cpp
+++ b/noncore/apps/odict/configdlg.cpp
@@ -50,7 +50,7 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa
vbox_layout->addWidget( search_tab );
- QPEApplication::execDialog( this );
+ QPEApplication::showDialog( this );
}
void ConfigDlg::slotNewMethod()
@@ -97,8 +97,11 @@ void ConfigDlg::loadSearchMethodNames()
QStringList groupListCfg = cfg.groupList().grep( "Method_" );
for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it )
{
- QListViewItem *item = new QListViewItem( list );
cfg.setGroup( *it );
- item->setText( 0 , cfg.readEntry( "Name" ) );
+ QString name = cfg.readEntry( "Name" );
+ if ( name != QString::null ) {
+ QListViewItem *item = new QListViewItem( list );
+ item->setText( 0 , name );
+ }
}
}