summaryrefslogtreecommitdiffstats
path: root/juk
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:28:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:28:49 -0600
commit32de9b20387f7237914d8d9b9f1ac733287a08a1 (patch)
tree796116d577da64255dc6e239ea25c4df30474306 /juk
parent86a162c3105e54d6e7e38c8b4f8e4ee36387f789 (diff)
downloadtdemultimedia-32de9b20387f7237914d8d9b9f1ac733287a08a1.tar.gz
tdemultimedia-32de9b20387f7237914d8d9b9f1ac733287a08a1.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'juk')
-rw-r--r--juk/covermanager.cpp2
-rw-r--r--juk/filerenamer.cpp4
-rw-r--r--juk/k3bexporter.cpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/juk/covermanager.cpp b/juk/covermanager.cpp
index 710a465d..fc814bf2 100644
--- a/juk/covermanager.cpp
+++ b/juk/covermanager.cpp
@@ -134,7 +134,7 @@ void CoverManagerPrivate::createDataDir() const
TQDir dir;
TQString dirPath(TQDir::cleanDirPath(coverLocation() + "/.."));
if(!dir.exists(dirPath))
- KStandardDirs::makeDir(dirPath);
+ TDEStandardDirs::makeDir(dirPath);
}
void CoverManagerPrivate::saveCovers() const
diff --git a/juk/filerenamer.cpp b/juk/filerenamer.cpp
index e9c997aa..ca9bbce0 100644
--- a/juk/filerenamer.cpp
+++ b/juk/filerenamer.cpp
@@ -909,8 +909,8 @@ bool FileRenamer::moveFile(const TQString &src, const TQString &dest)
dir.setFileName(TQString());
// Create the directory.
- if(!KStandardDirs::exists(dir.path()))
- if(!KStandardDirs::makeDir(dir.path())) {
+ if(!TDEStandardDirs::exists(dir.path()))
+ if(!TDEStandardDirs::makeDir(dir.path())) {
kdError() << "Unable to create directory " << dir.path() << endl;
return false;
}
diff --git a/juk/k3bexporter.cpp b/juk/k3bexporter.cpp
index 91164c93..6aec012f 100644
--- a/juk/k3bexporter.cpp
+++ b/juk/k3bexporter.cpp
@@ -103,7 +103,7 @@ K3bExporter::K3bExporter(Playlist *parent) : PlaylistExporter(parent), m_parent(
KAction *K3bExporter::action()
{
- if(!m_action && !KStandardDirs::findExe("k3b").isNull()) {
+ if(!m_action && !TDEStandardDirs::findExe("k3b").isNull()) {
m_action = new PlaylistAction(
"export_to_k3b",
i18n("Add Selected Items to Audio or Data CD"),
@@ -270,7 +270,7 @@ K3bPlaylistExporter::K3bPlaylistExporter(PlaylistBox *parent) : K3bExporter(0),
KAction *K3bPlaylistExporter::action()
{
- if(!KStandardDirs::findExe("k3b").isNull()) {
+ if(!TDEStandardDirs::findExe("k3b").isNull()) {
return new KAction(
i18n("Add Playlist to Audio or Data CD"),
SmallIconSet("k3b"),