-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 367ef3b..583f2da 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp @@ -261,46 +261,46 @@ bool CardMonitor::getStatusPcmcia( int showPopUp ) { bool CardMonitor::getStatusSd( int showPopUp ) { bool cardWas = cardInSd; // remember last state #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) struct mntent *me; FILE *mntfp = setmntent( "/etc/mtab", "r" ); if ( mntfp ) { while ( ( me = getmntent( mntfp ) ) != 0 ) { QString fs = me->mnt_fsname; - qDebug( fs ); + //qDebug( fs ); if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" || fs.left( 9 ) == "/dev/mmcd" ) { cardInSd = TRUE; show(); } else { cardInSd = FALSE; } } endmntent( mntfp ); } if( !showPopUp && cardWas != cardInSd ) { QString text = QString::null; QString what = QString::null; if( cardInSd ) { text += "SD Inserted"; what = "on"; } else { text += "SD Removed"; what = "off"; } - qDebug("TEXT: " + text ); + //qDebug("TEXT: " + text ); QSound::play( Resource::findSound( "cardmon/card" + what ) ); popUp( text, "cardmon/ide" ); // XX add SD pic } #else #error "Not on Linux" #endif return ( ( cardWas == cardInSd) ? FALSE : TRUE ); } void CardMonitor::paintEvent( QPaintEvent * ) { QPainter p( this ); |