summaryrefslogtreecommitdiff
authorpaule <paule>2007-02-07 10:34:31 (UTC)
committer paule <paule>2007-02-07 10:34:31 (UTC)
commit6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc (patch) (side-by-side diff)
treebb644f091d2be43065bc4f454bf575abb1b6ac00
parent5f5827b8e28311589e821f199dcefeb964538301 (diff)
downloadopie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.zip
opie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.tar.gz
opie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.tar.bz2
Check lircd is configured before accepting button presses
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/remotetab.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/tools/remote/remotetab.cpp b/noncore/tools/remote/remotetab.cpp
index c89d8c2..065feac 100644
--- a/noncore/tools/remote/remotetab.cpp
+++ b/noncore/tools/remote/remotetab.cpp
@@ -51,6 +51,11 @@ RemoteTab::RemoteTab(QWidget *parent, const char *name):QWidget(parent,name)
int RemoteTab::sendIR()
{
+ LircHandler lh;
+
+ if(!lh.checkLircdConfValid(false))
+ return 0;
+
QString curr_remote = topGroup->getRemotesText();
if(curr_remote != "")
cfg->setGroup(curr_remote);
@@ -63,7 +68,6 @@ int RemoteTab::sendIR()
QString string = cfg->readEntry(button->name());
if(string != "") {
string+='\n';
- LircHandler lh;
return lh.sendIR(string.latin1());
}
else {