author | paule <paule> | 2007-01-28 06:43:22 (UTC) |
---|---|---|
committer | paule <paule> | 2007-01-28 06:43:22 (UTC) |
commit | a70f2692462053c1b76f990919f698a2eaa56fb5 (patch) (side-by-side diff) | |
tree | dae72297f0ba8e43385ca0122edf5813bd51faf7 | |
parent | 8cf13e6845fa0159fb7f864bf5d3c5c0a62188ff (diff) | |
download | opie-a70f2692462053c1b76f990919f698a2eaa56fb5.zip opie-a70f2692462053c1b76f990919f698a2eaa56fb5.tar.gz opie-a70f2692462053c1b76f990919f698a2eaa56fb5.tar.bz2 |
Correctly select first remote upon loading configuration; show a warning message if user presses a button that has not been configured
-rw-r--r-- | noncore/tools/remote/remotetab.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/noncore/tools/remote/remotetab.cpp b/noncore/tools/remote/remotetab.cpp index 84038ca..45995fd 100644 --- a/noncore/tools/remote/remotetab.cpp +++ b/noncore/tools/remote/remotetab.cpp @@ -16,2 +16,4 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +#include <qmessagebox.h> + #include "remotetab.h" @@ -53,4 +55,4 @@ int RemoteTab::sendIR() QString string = cfg->readEntry(button->name()); + if(string != "") { string+='\n'; - LircHandler lh; @@ -58,2 +60,7 @@ int RemoteTab::sendIR() } + else { + QMessageBox::warning(this, tr("Error"), tr("This button has not\nbeen configured"), QMessageBox::Ok, QMessageBox::NoButton); + return 0; + } +} @@ -64,2 +71,6 @@ void RemoteTab::setConfig(Config *newCfg) topGroup->updateRemotes(cfg); + + QString curr_remote = topGroup->getRemotesText(); + if(curr_remote != "") + remoteSelected(curr_remote); } |