summaryrefslogtreecommitdiff
Side-by-side diff
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
@@ -52,4 +52,9 @@ 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 != "")
@@ -64,5 +69,4 @@ int RemoteTab::sendIR()
if(string != "") {
string+='\n';
- LircHandler lh;
return lh.sendIR(string.latin1());
}