summaryrefslogtreecommitdiff
path: root/noncore
authorpaule <paule>2007-01-28 09:02:01 (UTC)
committer paule <paule>2007-01-28 09:02:01 (UTC)
commit67b8a6e01fd3e47227f8bafa21077506fa55568c (patch) (unidiff)
treedb7b7eedaad723d47211f58b9ce20d601f08cf4b /noncore
parent99a72804434360cfef9d807c26fa0b02e5aa28cd (diff)
downloadopie-67b8a6e01fd3e47227f8bafa21077506fa55568c.zip
opie-67b8a6e01fd3e47227f8bafa21077506fa55568c.tar.gz
opie-67b8a6e01fd3e47227f8bafa21077506fa55568c.tar.bz2
Don't allow creating remote layouts with a blank name; remove old commented out code
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/configtab.cpp17
1 files changed, 4 insertions, 13 deletions
diff --git a/noncore/tools/remote/configtab.cpp b/noncore/tools/remote/configtab.cpp
index ebfba2e..af2b5ff 100644
--- a/noncore/tools/remote/configtab.cpp
+++ b/noncore/tools/remote/configtab.cpp
@@ -102,24 +102,15 @@ void ConfigTab::setConfig(Config *newCfg)
102 if(curr_remote != "") 102 if(curr_remote != "")
103 remoteSelected(curr_remote); 103 remoteSelected(curr_remote);
104} 104}
105/*
106void ConfigTab::savePressed()
107{
108 cfg->setGroup(remotes->currentText());
109 ButtonDialog *bd = new ButtonDialog(this, "BD", true, 0);
110 if( bd->exec() == 1)
111 {
112 printf("%s\n", bd->getList().join(" ").latin1());
113 }
114}
115*/
116 105
117void ConfigTab::newPressed() 106void ConfigTab::newPressed()
118{ 107{
119 QStringList list; 108 QStringList list;
120 QString newname = topGroupConf->getRemotesText(); 109 QString newname = topGroupConf->getRemotesText();
121 if(newname=="Remotes") 110 if(newname.stripWhiteSpace()=="")
122 QMessageBox::warning(this, tr("Error"), tr("The name 'Remotes' is not allowed"), QMessageBox::Ok, QMessageBox::NoButton); 111 QMessageBox::warning(this, tr("Error"), tr("Please enter a name\nfirst"), QMessageBox::Ok, QMessageBox::NoButton);
112 else if(newname=="Remotes")
113 QMessageBox::warning(this, tr("Error"), tr("The name 'Remotes' is\nnot allowed"), QMessageBox::Ok, QMessageBox::NoButton);
123 else { 114 else {
124 cfg->setGroup("Remotes"); 115 cfg->setGroup("Remotes");
125 list=cfg->readListEntry("remoteList", ','); 116 list=cfg->readListEntry("remoteList", ',');