@ -301,7 +301,7 @@ int GpsimProcessor::operandLiteral( unsigned address )
GpsimProcessor::ProgramFileValidity GpsimProcessor::isValidProgramFile( const TQString & programFile )
{
if ( !KStandardDirs::exists(programFile) )
if ( !TDEStandardDirs::exists(programFile) )
return DoesntExist;
TQString extension = programFile.right( programFile.length() - programFile.findRev('.') - 1 ).lower();
@ -139,7 +139,7 @@ void SettingsDlg::slotUpdatePicProgrammerDescription()
if ( executable.isEmpty() )
executable = program.lower();
TQString programLocation = KStandardDirs::findExe( executable );
TQString programLocation = TDEStandardDirs::findExe( executable );
if ( programLocation.isNull() )
description.prepend( i18n("<b>%1</b> cannot be found.<br>").arg( executable ) );
else