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) (side-by-side diff)
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)
if(curr_remote != "")
remoteSelected(curr_remote);
}
-/*
-void ConfigTab::savePressed()
-{
- cfg->setGroup(remotes->currentText());
- ButtonDialog *bd = new ButtonDialog(this, "BD", true, 0);
- if( bd->exec() == 1)
- {
- printf("%s\n", bd->getList().join(" ").latin1());
- }
-}
-*/
void ConfigTab::newPressed()
{
QStringList list;
QString newname = topGroupConf->getRemotesText();
- if(newname=="Remotes")
- QMessageBox::warning(this, tr("Error"), tr("The name 'Remotes' is not allowed"), QMessageBox::Ok, QMessageBox::NoButton);
+ if(newname.stripWhiteSpace()=="")
+ QMessageBox::warning(this, tr("Error"), tr("Please enter a name\nfirst"), QMessageBox::Ok, QMessageBox::NoButton);
+ else if(newname=="Remotes")
+ QMessageBox::warning(this, tr("Error"), tr("The name 'Remotes' is\nnot allowed"), QMessageBox::Ok, QMessageBox::NoButton);
else {
cfg->setGroup("Remotes");
list=cfg->readListEntry("remoteList", ',');