diff options
Diffstat (limited to 'kate/make/plugin_katemake.cpp')
-rw-r--r-- | kate/make/plugin_katemake.cpp | 4 |
1 files changed, 2 insertions, 2 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() ? |