summaryrefslogtreecommitdiffstats
path: root/kate
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:25:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:25:26 -0600
commit30c894d73ed8800b48fe4973d4907c36e44b1ce5 (patch)
tree7a222d577e61985ccb662cdc32e5b885d580f021 /kate
parent854cb5dd9c481a1351624fd095f4865d211ddb48 (diff)
downloadtdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.tar.gz
tdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'kate')
-rw-r--r--kate/make/plugin_katemake.cpp4
-rw-r--r--kate/xmlcheck/plugin_katexmlcheck.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/kate/make/plugin_katemake.cpp b/kate/make/plugin_katemake.cpp
index 6e573a1..3d0cbb2 100644
--- a/kate/make/plugin_katemake.cpp
+++ b/kate/make/plugin_katemake.cpp
@@ -657,9 +657,9 @@ bool PluginKateMakeView::slotValidate()
}
m_proc->setWorkingDirectory(document_dir);
- TQString make = KStandardDirs::findExe( "gmake" );
+ TQString make = TDEStandardDirs::findExe( "gmake" );
if (make.isEmpty())
- make = KStandardDirs::findExe("make");
+ make = TDEStandardDirs::findExe("make");
*m_proc << make;
if( make.isEmpty() || ! m_proc->start(TDEProcess::NotifyOnExit, TDEProcess::AllOutput) ) {
KMessageBox::error(0, i18n("<b>Error:</b> Failed to run %1.").arg(make.isEmpty() ?
diff --git a/kate/xmlcheck/plugin_katexmlcheck.cpp b/kate/xmlcheck/plugin_katexmlcheck.cpp
index e7ce1e2..76d674a 100644
--- a/kate/xmlcheck/plugin_katexmlcheck.cpp
+++ b/kate/xmlcheck/plugin_katexmlcheck.cpp
@@ -292,7 +292,7 @@ bool PluginKateXMLCheckView::slotValidate()
kdDebug() << "Warning (slotValidate()): temp file '" << m_tmp_file->name() << "' not deleted: " << m_tmp_file->status() << endl;
}
- TQString exe = KStandardDirs::findExe("xmllint");
+ TQString exe = TDEStandardDirs::findExe("xmllint");
if( exe.isEmpty() ) {
exe = locate("exe", "xmllint");
}