diff options
Diffstat (limited to 'kalarm/prefdlg.cpp')
-rw-r--r-- | kalarm/prefdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/prefdlg.cpp b/kalarm/prefdlg.cpp index 6f21949a7..0e7450326 100644 --- a/kalarm/prefdlg.cpp +++ b/kalarm/prefdlg.cpp @@ -392,7 +392,7 @@ MiscPrefTab::MiscPrefTab(TQVBox* frame) { TQString cmd = xtermCommands[mXtermCount]; TQStringList args = KShell::splitArgs(cmd); - if (args.isEmpty() || KStandardDirs::findExe(args[0]).isEmpty()) + if (args.isEmpty() || TDEStandardDirs::findExe(args[0]).isEmpty()) continue; TQRadioButton* radio = new TQRadioButton(args[0], group); radio->setMinimumSize(radio->sizeHint()); @@ -467,7 +467,7 @@ void MiscPrefTab::apply(bool syncToDisc) { TQStringList args = KShell::splitArgs(cmd); cmd = args.isEmpty() ? TQString() : args[0]; - if (KStandardDirs::findExe(cmd).isEmpty()) + if (TDEStandardDirs::findExe(cmd).isEmpty()) { mXtermCommand->setFocus(); if (KMessageBox::warningContinueCancel(this, i18n("Command to invoke terminal window not found:\n%1").arg(cmd)) |