From f9308849c8257f3d2e4bec0d476f56f87935cdab Mon Sep 17 00:00:00 2001 From: cniehaus Date: Sun, 29 Dec 2002 16:52:47 +0000 Subject: and now without segfault on exit --- (limited to 'noncore') 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 @@ -32,14 +32,6 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) { - if( !itemname ) - setCaption( tr( "New Searchmethod" ) ); - else - { - setCaption( tr( "Change Searchmethod" ) ); - itemName = itemname; - setupEntries(itemname); - } QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" ); QVBox *vbox = new QVBox( this ); @@ -74,18 +66,26 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, vbox_layout->addWidget( vbox ); showMaximized(); + + if( !itemname ) + setCaption( tr( "New Searchmethod" ) ); + else + { + setCaption( tr( "Change Searchmethod" ) ); + itemName = itemname; + setupEntries(itemname); + } } void SearchMethodDlg::setupEntries( QString item ) { Config cfg( "odict" ); 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" ) ); } void SearchMethodDlg::slotBrowse() -- cgit v0.9.0.2