diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:15:17 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:15:17 -0600 |
commit | 05b723e1cfcc90e9fbb5430fe046aed9f4a54b41 (patch) | |
tree | f24709437c87f71615435d4884fda44c6015e9f0 /amarok/src/Options1.ui.h | |
parent | 2c9ac2771083c1cef54f2b58edaf0613af37d109 (diff) | |
download | amarok-05b723e1cfcc90e9fbb5430fe046aed9f4a54b41.tar.gz amarok-05b723e1cfcc90e9fbb5430fe046aed9f4a54b41.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'amarok/src/Options1.ui.h')
-rw-r--r-- | amarok/src/Options1.ui.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/amarok/src/Options1.ui.h b/amarok/src/Options1.ui.h index e4f8e723..1cf593f5 100644 --- a/amarok/src/Options1.ui.h +++ b/amarok/src/Options1.ui.h @@ -32,16 +32,16 @@ void Options1::init() // Remove browsers which are not actually installed for( TQStringList::Iterator it = browsers.begin(), end = browsers.end(); it != end; ) { - if( KStandardDirs::findExe( *it ).isEmpty() ) + if( TDEStandardDirs::findExe( *it ).isEmpty() ) it = browsers.erase( it ); else ++it; } #ifdef TQ_WS_MAC - if ( KStandardDirs::findExe( "open" ) != TQString() ) + if ( TDEStandardDirs::findExe( "open" ) != TQString() ) browsers.prepend( i18n( "Default Browser" ) ); #else - if ( KStandardDirs::findExe( "kfmclient" ) != TQString() ) + if ( TDEStandardDirs::findExe( "kfmclient" ) != TQString() ) browsers.prepend( i18n( "Default KDE Browser" ) ); #endif |