summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:21:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:21:00 -0600
commitb3a2f2e9789ecaf32dd5981e746130894c8bcf10 (patch)
tree3a35d1b2e5c3305f1a620fac8858194d77df2b4c
parente2905b4181df5752881f3ca098fdb22cdac34d23 (diff)
downloadktechlab-b3a2f2e9789ecaf32dd5981e746130894c8bcf10.tar.gz
ktechlab-b3a2f2e9789ecaf32dd5981e746130894c8bcf10.zip
Rename KStandard for enhanced compatibility with KDE4
-rw-r--r--src/electronics/gpsimprocessor.cpp2
-rw-r--r--src/gui/settingsdlg.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/electronics/gpsimprocessor.cpp b/src/electronics/gpsimprocessor.cpp
index 76fc20b..2b45da7 100644
--- a/src/electronics/gpsimprocessor.cpp
+++ b/src/electronics/gpsimprocessor.cpp
@@ -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();
diff --git a/src/gui/settingsdlg.cpp b/src/gui/settingsdlg.cpp
index 69d619c..1c4fda7 100644
--- a/src/gui/settingsdlg.cpp
+++ b/src/gui/settingsdlg.cpp
@@ -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