summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/remote.cpp
Unidiff
Diffstat (limited to 'noncore/tools/remote/remote.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/remote/remote.cpp28
1 files changed, 16 insertions, 12 deletions
diff --git a/noncore/tools/remote/remote.cpp b/noncore/tools/remote/remote.cpp
index 67fc57d..5b756cb 100644
--- a/noncore/tools/remote/remote.cpp
+++ b/noncore/tools/remote/remote.cpp
@@ -40,21 +40,25 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
40int main( int argc, char **argv ) 40int main( int argc, char **argv )
41{ 41{
42 QPEApplication a( argc, argv ); 42 QPEApplication a( argc, argv );
43 MainView w;
44 a.setMainWidget( &w );
45 QPEApplication::showWidget( &w );
46 43
47 LircHandler lh; 44 LircHandler lh;
48 if(!lh.isLircdRunning()) {
49 QMessageBox mb("Error!",
50 "Lircd is not running",
51 QMessageBox::NoIcon,
52 QMessageBox::Ok,
53 QMessageBox::NoButton,
54 QMessageBox::NoButton);
55 mb.exec();
56 45
46 lh.disableIrDA();
47 lh.setupModules();
48 lh.startLircd();
49 if(!lh.isLircdRunning()) {
50 QMessageBox::critical(NULL, QObject::tr("Error"),
51 QObject::tr("Unable to start lircd"),
52 QMessageBox::Ok, QMessageBox::NoButton);
57 } 53 }
58 54
59 return a.exec(); 55 MainView w;
56 a.setMainWidget( &w );
57 QPEApplication::showWidget( &w );
58 int result = a.exec();
59
60 lh.stopLircd();
61 lh.cleanupModules();
62
63 return result;
60} 64}