-rw-r--r-- | noncore/apps/odict/odict.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 4c99964..497de36 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -82,7 +82,9 @@ void ODict::loadConfig() | |||
82 | QString name; | 82 | QString name; |
83 | cfg.setGroup( *it ); | 83 | cfg.setGroup( *it ); |
84 | name = cfg.readEntry( "Name" ); | 84 | name = cfg.readEntry( "Name" ); |
85 | query_co->insertItem( name ); | 85 | if ( name != QString::null ) { |
86 | query_co->insertItem( name ); | ||
87 | } | ||
86 | 88 | ||
87 | /* | 89 | /* |
88 | * this check is to look up what dictionary has been used the | 90 | * this check is to look up what dictionary has been used the |