diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
commit | f2225fc1f936c1d9e6a5570a63ffe12c366176bf (patch) | |
tree | cf0b7f61bb88ea0a2e155d4cffeeb4eaaa8549dd /kalarm/prefdlg.cpp | |
parent | 0922423eb834afb70e3323db43062cf4083dc298 (diff) | |
download | tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.tar.gz tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.zip |
Rename KStandard for enhanced compatibility with KDE4
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)) |