summaryrefslogtreecommitdiffstats
path: root/kalarm/prefdlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:29:09 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:29:09 -0600
commitf2225fc1f936c1d9e6a5570a63ffe12c366176bf (patch)
treecf0b7f61bb88ea0a2e155d4cffeeb4eaaa8549dd /kalarm/prefdlg.cpp
parent0922423eb834afb70e3323db43062cf4083dc298 (diff)
downloadtdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.tar.gz
tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'kalarm/prefdlg.cpp')
-rw-r--r--kalarm/prefdlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/prefdlg.cpp b/kalarm/prefdlg.cpp
index 6f21949a..0e745032 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))