diff options
author | Timothy Pearson <[email protected]> | 2013-01-31 13:25:26 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-31 13:25:26 -0600 |
commit | 30c894d73ed8800b48fe4973d4907c36e44b1ce5 (patch) | |
tree | 7a222d577e61985ccb662cdc32e5b885d580f021 /kate/make | |
parent | 854cb5dd9c481a1351624fd095f4865d211ddb48 (diff) | |
download | tdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.tar.gz tdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'kate/make')
-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() ? |