summaryrefslogtreecommitdiff
path: root/core/applets
Unidiff
Diffstat (limited to 'core/applets') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/irdaapplet/irda.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp
index 6148308..7709bed 100644
--- a/core/applets/irdaapplet/irda.cpp
+++ b/core/applets/irdaapplet/irda.cpp
@@ -18,13 +18,14 @@
18 18
19/* OPIE */ 19/* OPIE */
20#include <opie2/otaskbarapplet.h> 20#include <opie2/otaskbarapplet.h>
21#include <qpe/applnk.h> 21#include <qpe/applnk.h>
22#include <qpe/resource.h> 22#include <qpe/resource.h>
23#include <qpe/qcopenvelope_qws.h> 23#include <qpe/qcopenvelope_qws.h>
24using namespace Opie::Ui; 24#include <qpe/ir.h>
25
25 26
26/* QT */ 27/* QT */
27#include <qpainter.h> 28#include <qpainter.h>
28#include <qfile.h> 29#include <qfile.h>
29#include <qtimer.h> 30#include <qtimer.h>
30#include <qtextstream.h> 31#include <qtextstream.h>
@@ -263,13 +264,16 @@ void IrdaApplet::mousePressEvent ( QMouseEvent * )
263 } 264 }
264 265
265 menu-> insertItem ( m_irda_active ? tr( "Disable IrDA" ) : tr( "Enable IrDA" ), 0 ); 266 menu-> insertItem ( m_irda_active ? tr( "Disable IrDA" ) : tr( "Enable IrDA" ), 0 );
266 267
267 if ( m_irda_active ) { 268 if ( m_irda_active ) {
268 menu-> insertItem ( m_irda_discovery_active ? tr( "Disable Discovery" ) : tr( "Enable Discovery" ), 1 ); 269 menu-> insertItem ( m_irda_discovery_active ? tr( "Disable Discovery" ) : tr( "Enable Discovery" ), 1 );
269 menu-> insertItem ( m_receive_active ? tr( "Disable Receive" ) : tr( "Enable Receive" ), 2 ); 270
271 /* Only Receive if OBEX is installed */
272 if( Ir::supported() )
273 menu-> insertItem ( m_receive_active ? tr( "Disable Receive" ) : tr( "Enable Receive" ), 2 );
270 } 274 }
271 275
272 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); 276 QPoint p = mapToGlobal ( QPoint ( 0, 0 ) );
273 QSize s = menu-> sizeHint ( ); 277 QSize s = menu-> sizeHint ( );
274 278
275 p = QPoint ( p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), p. y ( ) - s. height ( )); 279 p = QPoint ( p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), p. y ( ) - s. height ( ));