diff options
Diffstat (limited to 'kate')
-rw-r--r-- | kate/make/plugin_katemake.cpp | 4 | ||||
-rw-r--r-- | kate/xmlcheck/plugin_katexmlcheck.cpp | 2 |
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"); } |