summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/remote.cpp
authorpaule <paule>2007-02-07 10:31:30 (UTC)
committer paule <paule>2007-02-07 10:31:30 (UTC)
commit5f5827b8e28311589e821f199dcefeb964538301 (patch) (side-by-side diff)
treeedb64c2c0d4ab9795e18a95121a63df393ca55bf /noncore/tools/remote/remote.cpp
parent83d7fd04cc8e1fcafb345f74bc861515e17c5414 (diff)
downloadopie-5f5827b8e28311589e821f199dcefeb964538301.zip
opie-5f5827b8e28311589e821f199dcefeb964538301.tar.gz
opie-5f5827b8e28311589e821f199dcefeb964538301.tar.bz2
Start up gracefully when lircd is not properly configured yet
Diffstat (limited to 'noncore/tools/remote/remote.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/remote/remote.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/noncore/tools/remote/remote.cpp b/noncore/tools/remote/remote.cpp
index 5b756cb..03d70c4 100644
--- a/noncore/tools/remote/remote.cpp
+++ b/noncore/tools/remote/remote.cpp
@@ -42,17 +42,27 @@ int main( int argc, char **argv )
QPEApplication a( argc, argv );
LircHandler lh;
+ bool disablelirc = false;
lh.disableIrDA();
lh.setupModules();
lh.startLircd();
+
+ if(lh.checkLircdConfValid(false)) {
if(!lh.isLircdRunning()) {
QMessageBox::critical(NULL, QObject::tr("Error"),
QObject::tr("Unable to start lircd"),
QMessageBox::Ok, QMessageBox::NoButton);
+ disablelirc = true;
+ }
+ }
+ else {
+ disablelirc = true;
}
MainView w;
+ if(!disablelirc)
+ w.updateLearnTab();
a.setMainWidget( &w );
QPEApplication::showWidget( &w );
int result = a.exec();