summaryrefslogtreecommitdiffstats
path: root/korganizer
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer')
-rw-r--r--korganizer/actionmanager.cpp2
-rw-r--r--korganizer/komailclient.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/korganizer/actionmanager.cpp b/korganizer/actionmanager.cpp
index e4c906fa..4ceb95a1 100644
--- a/korganizer/actionmanager.cpp
+++ b/korganizer/actionmanager.cpp
@@ -870,7 +870,7 @@ bool ActionManager::openURL( const KURL &url,bool merge )
if ( url.isLocalFile() ) {
mURL = url;
mFile = url.path();
- if ( !KStandardDirs::exists( mFile ) ) {
+ if ( !TDEStandardDirs::exists( mFile ) ) {
mMainWindow->showStatusMessage( i18n("New calendar '%1'.")
.arg( url.prettyURL() ) );
mCalendarView->setModified();
diff --git a/korganizer/komailclient.cpp b/korganizer/komailclient.cpp
index 78819403..b951b759 100644
--- a/korganizer/komailclient.cpp
+++ b/korganizer/komailclient.cpp
@@ -188,11 +188,11 @@ bool KOMailClient::send(const TQString &from,const TQString &_to,const TQString
if (KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail) {
bool needHeaders = true;
- TQString command = KStandardDirs::findExe(TQString::fromLatin1("sendmail"),
+ TQString command = TDEStandardDirs::findExe(TQString::fromLatin1("sendmail"),
TQString::fromLatin1("/sbin:/usr/sbin:/usr/lib"));
if (!command.isNull()) command += TQString::fromLatin1(" -oi -t");
else {
- command = KStandardDirs::findExe(TQString::fromLatin1("mail"));
+ command = TDEStandardDirs::findExe(TQString::fromLatin1("mail"));
if (command.isNull()) return false; // give up
command.append(TQString::fromLatin1(" -s "));