-rw-r--r-- | noncore/tools/remote/topgroup.cpp | 6 | ||||
-rw-r--r-- | noncore/tools/remote/topgroup.h | 1 | ||||
-rw-r--r-- | noncore/tools/remote/topgroupconf.cpp | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/noncore/tools/remote/topgroup.cpp b/noncore/tools/remote/topgroup.cpp index 427cb8f..7f2366b 100644 --- a/noncore/tools/remote/topgroup.cpp +++ b/noncore/tools/remote/topgroup.cpp | |||
@@ -48,7 +48,11 @@ TopGroup::TopGroup(QWidget *parent, const char *name):QWidget(parent,name) | |||
48 | void TopGroup::updateRemotes(Config *cfg) | 48 | void TopGroup::updateRemotes(Config *cfg) |
49 | { | 49 | { |
50 | remotes->clear(); | 50 | remotes->clear(); |
51 | remotes->insertItem(QString("SelectRemote")); | ||
52 | cfg->setGroup("Remotes"); | 51 | cfg->setGroup("Remotes"); |
53 | remotes->insertStringList(cfg->readListEntry("remoteList", ',') ); | 52 | remotes->insertStringList(cfg->readListEntry("remoteList", ',') ); |
54 | } | 53 | } |
54 | |||
55 | QString TopGroup::getRemotesText() | ||
56 | { | ||
57 | return remotes->currentText(); | ||
58 | } | ||
diff --git a/noncore/tools/remote/topgroup.h b/noncore/tools/remote/topgroup.h index 215292d..091ac14 100644 --- a/noncore/tools/remote/topgroup.h +++ b/noncore/tools/remote/topgroup.h | |||
@@ -26,6 +26,7 @@ class TopGroup : public QWidget | |||
26 | public: | 26 | public: |
27 | TopGroup(QWidget *parent=0, const char *name=0); | 27 | TopGroup(QWidget *parent=0, const char *name=0); |
28 | void updateRemotes(Config *cfg); | 28 | void updateRemotes(Config *cfg); |
29 | QString getRemotesText(); | ||
29 | private: | 30 | private: |
30 | QComboBox *remotes; | 31 | QComboBox *remotes; |
31 | }; | 32 | }; |
diff --git a/noncore/tools/remote/topgroupconf.cpp b/noncore/tools/remote/topgroupconf.cpp index 0419a65..7df4d18 100644 --- a/noncore/tools/remote/topgroupconf.cpp +++ b/noncore/tools/remote/topgroupconf.cpp | |||
@@ -33,7 +33,6 @@ TopGroupConf::TopGroupConf(QWidget *parent, const char *name):QWidget(parent,nam | |||
33 | //source->setGeometry(50,5,40,20); | 33 | //source->setGeometry(50,5,40,20); |
34 | 34 | ||
35 | remotes = new QComboBox(true, this, "remotes"); | 35 | remotes = new QComboBox(true, this, "remotes"); |
36 | remotes->insertItem(QString("Remotes")); | ||
37 | layout->addWidget(remotes); | 36 | layout->addWidget(remotes); |
38 | layout->setStretchFactor(remotes, 1); | 37 | layout->setStretchFactor(remotes, 1); |
39 | connect(remotes, SIGNAL(activated(const QString&)), this->parentWidget(), SLOT(remoteSelected(const QString&)) ); | 38 | connect(remotes, SIGNAL(activated(const QString&)), this->parentWidget(), SLOT(remoteSelected(const QString&)) ); |