summaryrefslogtreecommitdiff
path: root/core/applets/cardmon/cardmon.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/cardmon/cardmon.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp6
1 files changed, 3 insertions, 3 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
@@ -250,9 +250,9 @@ bool CardMonitor::getStatusPcmcia( int showPopUp ) {
QSound::play( Resource::findSound( "cardmon/card" + what) );
}
} else {
// no file found
- qDebug("no file found");
+ qDebug( "no file found" );
cardInPcmcia0 = FALSE;
cardInPcmcia1 = FALSE;
}
return ( (cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1 ) ? FALSE : TRUE );
@@ -269,9 +269,9 @@ bool CardMonitor::getStatusSd( int showPopUp ) {
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 {
@@ -290,9 +290,9 @@ bool CardMonitor::getStatusSd( int showPopUp ) {
} 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