author | cniehaus <cniehaus> | 2002-12-29 16:52:47 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-29 16:52:47 (UTC) |
commit | f9308849c8257f3d2e4bec0d476f56f87935cdab (patch) (side-by-side diff) | |
tree | 1854eaf7b0ea1f2a23a974b2eab8616eb4db76f4 /noncore | |
parent | 95e2d570a5f7dd3611858a55ac7956ab7ece6f3d (diff) | |
download | opie-f9308849c8257f3d2e4bec0d476f56f87935cdab.zip opie-f9308849c8257f3d2e4bec0d476f56f87935cdab.tar.gz opie-f9308849c8257f3d2e4bec0d476f56f87935cdab.tar.bz2 |
and now without segfault on exit
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index 0572f11..fcbdb8a 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp @@ -34,10 +34,2 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, { - if( !itemname ) - setCaption( tr( "New Searchmethod" ) ); - else - { - setCaption( tr( "Change Searchmethod" ) ); - itemName = itemname; - setupEntries(itemname); - } @@ -76,2 +68,11 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, showMaximized(); + + if( !itemname ) + setCaption( tr( "New Searchmethod" ) ); + else + { + setCaption( tr( "Change Searchmethod" ) ); + itemName = itemname; + setupEntries(itemname); + } } @@ -82,8 +83,7 @@ void SearchMethodDlg::setupEntries( QString item ) cfg.setGroup( itemName ); - trenner->setText( "foooof" ); -//X trenner->setText( cfg.readEntry( "Seperator" ) ); -//X lang1->setText( cfg.readEntry( "Lang1" ) ); -//X lang2->setText( cfg.readEntry( "Lang2" ) ); -//X nameLE->setText( itemName ); -//X dictFileLE->setText( cfg.readEntry( "file" ) ); + trenner->setText( cfg.readEntry( "Seperator" ) ); + lang1->setText( cfg.readEntry( "Lang1" ) ); + lang2->setText( cfg.readEntry( "Lang2" ) ); + nameLE->setText( itemName ); + dictFileLE->setText( cfg.readEntry( "file" ) ); } |