summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp
index fb140fe..d6ac616 100644
--- a/core/applets/cardmon/cardmon.cpp
+++ b/core/applets/cardmon/cardmon.cpp
@@ -281,52 +281,52 @@ bool CardMonitor::getStatusSd( int showPopUp ) {
281 struct mntent *me; 281 struct mntent *me;
282 FILE *mntfp = setmntent( "/etc/mtab", "r" ); 282 FILE *mntfp = setmntent( "/etc/mtab", "r" );
283 283
284 if ( mntfp ) { 284 if ( mntfp ) {
285 while ( ( me = getmntent( mntfp ) ) != 0 ) { 285 while ( ( me = getmntent( mntfp ) ) != 0 ) {
286 QString fs = QFile::decodeName( me->mnt_fsname ); 286 QString fs = QFile::decodeName( me->mnt_fsname );
287 //odebug << fs << oendl; 287 //odebug << fs << oendl;
288 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd" 288 if ( fs.left( 14 ) == "/dev/mmc/part1" || fs.left( 7 ) == "/dev/sd"
289 || fs.left( 9 ) == "/dev/mmcd" ) { 289 || fs.left( 9 ) == "/dev/mmcd" ) {
290 cardInSd = TRUE; 290 cardInSd = TRUE;
291 cardSdName = fs; 291 cardSdName = fs;
292 show(); 292 show();
293 } 293 }
294 // else { 294 // else {
295 // cardInSd = FALSE; 295 // cardInSd = FALSE;
296 // } 296 // }
297 } 297 }
298 endmntent( mntfp ); 298 endmntent( mntfp );
299 } 299 }
300 300
301 if ( !showPopUp && cardWas != cardInSd ) { 301 if ( !showPopUp && cardWas != cardInSd ) {
302 QString text = QString::null; 302 QString text = QString::null;
303 QString what = QString::null; 303 QString what = QString::null;
304 if ( cardInSd ) { 304 if ( cardInSd ) {
305 text += "New card: SD/MMC"; 305 text += tr("New card: SD/MMC");
306 what = "on"; 306 what = "on";
307 } else { 307 } else {
308 text += "Ejected: SD/MMC"; 308 text += tr("Ejected: SD/MMC");
309 what = "off"; 309 what = "off";
310 } 310 }
311 //odebug << "TEXT: " + text << oendl; 311 //odebug << "TEXT: " + text << oendl;
312 #ifndef QT_NO_SOUND 312 #ifndef QT_NO_SOUND
313 QSound::play( Resource::findSound( "cardmon/card" + what ) ); 313 QSound::play( Resource::findSound( "cardmon/card" + what ) );
314 #endif 314 #endif
315 315
316 popUp( text, "cardmon/ide" ); // XX add SD pic 316 popUp( text, "cardmon/ide" ); // XX add SD pic
317 } 317 }
318 #else 318 #else
319 #error "Not on Linux" 319 #error "Not on Linux"
320 #endif 320 #endif
321 repaint( FALSE ); 321 repaint( FALSE );
322 return ( ( cardWas == cardInSd ) ? FALSE : TRUE ); 322 return ( ( cardWas == cardInSd ) ? FALSE : TRUE );
323} 323}
324 324
325void CardMonitor::paintEvent( QPaintEvent * ) { 325void CardMonitor::paintEvent( QPaintEvent * ) {
326 326
327 QPainter p( this ); 327 QPainter p( this );
328 328
329 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { 329 if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
330 p.drawPixmap( 0, 0, pm ); 330 p.drawPixmap( 0, 0, pm );
331 show(); 331 show();
332 } else { 332 } else {