summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/tyler
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:25:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:25:26 -0600
commit30c894d73ed8800b48fe4973d4907c36e44b1ce5 (patch)
tree7a222d577e61985ccb662cdc32e5b885d580f021 /noatun-plugins/tyler
parent854cb5dd9c481a1351624fd095f4865d211ddb48 (diff)
downloadtdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.tar.gz
tdeaddons-30c894d73ed8800b48fe4973d4907c36e44b1ce5.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'noatun-plugins/tyler')
-rw-r--r--noatun-plugins/tyler/file.cpp4
-rw-r--r--noatun-plugins/tyler/tyler.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/noatun-plugins/tyler/file.cpp b/noatun-plugins/tyler/file.cpp
index cd61992..9e5b209 100644
--- a/noatun-plugins/tyler/file.cpp
+++ b/noatun-plugins/tyler/file.cpp
@@ -28,14 +28,14 @@ extern "C"
static TQString getDataPath(void)
{
- KStandardDirs &dirs = *TDEGlobal::dirs();
+ TDEStandardDirs &dirs = *TDEGlobal::dirs();
return dirs.findResource("data", "noatun/tylerstates");
}
static TQString getSavePath(void)
{
- KStandardDirs &dirs = *TDEGlobal::dirs();
+ TDEStandardDirs &dirs = *TDEGlobal::dirs();
return dirs.saveLocation("data", "noatun/") + "tylerstates";
}
diff --git a/noatun-plugins/tyler/tyler.cpp b/noatun-plugins/tyler/tyler.cpp
index 39be621..25d844b 100644
--- a/noatun-plugins/tyler/tyler.cpp
+++ b/noatun-plugins/tyler/tyler.cpp
@@ -36,7 +36,7 @@ Tyler::~Tyler()
void Tyler::init()
{
- process << KStandardDirs::findExe("noatuntyler.bin");
+ process << TDEStandardDirs::findExe("noatuntyler.bin");
connect(&process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(processExited(TDEProcess *)));
// Note that process.start() will fail if findExe fails, so there's no real need