From 244e3fd05f01859a82243347ddc11318788cefb2 Mon Sep 17 00:00:00 2001 From: zecke Date: Sat, 20 Nov 2004 18:11:28 +0000 Subject: Stop fooling the user and allow receiving of files only if Ir::supported returns true. This is the case if our obex implementation is loaded --- (limited to 'core/applets') 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 @@ -21,7 +21,8 @@ #include #include #include -using namespace Opie::Ui; +#include + /* QT */ #include @@ -266,7 +267,10 @@ void IrdaApplet::mousePressEvent ( QMouseEvent * ) if ( m_irda_active ) { menu-> insertItem ( m_irda_discovery_active ? tr( "Disable Discovery" ) : tr( "Enable Discovery" ), 1 ); - menu-> insertItem ( m_receive_active ? tr( "Disable Receive" ) : tr( "Enable Receive" ), 2 ); + + /* Only Receive if OBEX is installed */ + if( Ir::supported() ) + menu-> insertItem ( m_receive_active ? tr( "Disable Receive" ) : tr( "Enable Receive" ), 2 ); } QPoint p = mapToGlobal ( QPoint ( 0, 0 ) ); -- cgit v0.9.0.2