-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 9 | ||||
-rw-r--r-- | noncore/apps/odict/configdlg.h | 2 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 2056457..0f33ee8 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -44,2 +44,3 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa | |||
44 | search_tab = new QWidget( tab , "search_tab" ); | 44 | search_tab = new QWidget( tab , "search_tab" ); |
45 | loadSearchMethodNames(); | ||
45 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); | 46 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); |
@@ -105 +106,9 @@ void ConfigDlg::slotDeleteMethod() | |||
105 | } | 106 | } |
107 | |||
108 | void ConfigDlg::loadSearchMethodNames() | ||
109 | { | ||
110 | QListViewItem *item = new QListViewItem( list); | ||
111 | Config cfg( "odict" ); | ||
112 | //X cfg.setGroup( itemName ); | ||
113 | //X QString temp = cfg.readEntry( "Seperator" ); | ||
114 | } | ||
diff --git a/noncore/apps/odict/configdlg.h b/noncore/apps/odict/configdlg.h index e59b875..2b7d0a1 100644 --- a/noncore/apps/odict/configdlg.h +++ b/noncore/apps/odict/configdlg.h | |||
@@ -32,2 +32,4 @@ class ConfigDlg : public QDialog | |||
32 | 32 | ||
33 | void loadSearchMethodNames(); | ||
34 | |||
33 | private slots: | 35 | private slots: |
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index fcbdb8a..203c663 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp | |||
@@ -82,3 +82,3 @@ void SearchMethodDlg::setupEntries( QString item ) | |||
82 | Config cfg( "odict" ); | 82 | Config cfg( "odict" ); |
83 | cfg.setGroup( itemName ); | 83 | cfg.setGroup( "Method_"+itemName ); |
84 | trenner->setText( cfg.readEntry( "Seperator" ) ); | 84 | trenner->setText( cfg.readEntry( "Seperator" ) ); |
@@ -100,3 +100,3 @@ void SearchMethodDlg::saveItem() | |||
100 | Config cfg( "odict" ); | 100 | Config cfg( "odict" ); |
101 | cfg.setGroup( name ); | 101 | cfg.setGroup( "Method_"+name ); |
102 | cfg.writeEntry( "Name", name ); | 102 | cfg.writeEntry( "Name", name ); |