summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/oblique/oblique.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/oblique/oblique.cpp')
-rw-r--r--noatun-plugins/oblique/oblique.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/noatun-plugins/oblique/oblique.cpp b/noatun-plugins/oblique/oblique.cpp
index a74ce3b..8365468 100644
--- a/noatun-plugins/oblique/oblique.cpp
+++ b/noatun-plugins/oblique/oblique.cpp
@@ -37,15 +37,15 @@ Oblique::Oblique()
mBase = new Base(::locate("data", "noatun/")+"/oblique-list");
mView = new View(this);
- connect(napp->player(), TQT_SIGNAL(loopTypeChange(int)), TQT_SLOT(loopTypeChange(int)));
+ connect(napp->player(), TQ_SIGNAL(loopTypeChange(int)), TQ_SLOT(loopTypeChange(int)));
mSelector = new SequentialSelector(mView->tree());
new Configure(this);
// psst, window's gone, pass it on!
- connect(mView, TQT_SIGNAL(listHidden()), TQT_SIGNAL(listHidden()));
- connect(mView, TQT_SIGNAL(listShown()), TQT_SIGNAL(listShown()));
+ connect(mView, TQ_SIGNAL(listHidden()), TQ_SIGNAL(listHidden()));
+ connect(mView, TQ_SIGNAL(listShown()), TQ_SIGNAL(listShown()));
loopTypeChange(napp->player()->loopStyle());
}
@@ -187,7 +187,7 @@ void Oblique::beginDirectoryAdd(const KURL &url)
else
{
mAdder = new DirectoryAdder(url, this);
- connect(mAdder, TQT_SIGNAL(done()), TQT_SLOT(adderDone()));
+ connect(mAdder, TQ_SIGNAL(done()), TQ_SLOT(adderDone()));
}
}
@@ -201,7 +201,7 @@ Loader::Loader(Tree *tree)
mDeferredLoaderAt=1;
- TQTimer::singleShot(0, this, TQT_SLOT(loadItemsDeferred()));
+ TQTimer::singleShot(0, this, TQ_SLOT(loadItemsDeferred()));
}
void Loader::loadItemsDeferred()
@@ -230,7 +230,7 @@ void Loader::loadItemsDeferred()
mDeferredLoaderAt++;
}
- TQTimer::singleShot(0, this, TQT_SLOT(loadItemsDeferred()));
+ TQTimer::singleShot(0, this, TQ_SLOT(loadItemsDeferred()));
}
@@ -267,16 +267,16 @@ void DirectoryAdder::addNextPending()
currentJobURL= *pendingIt;
listJob = TDEIO::listDir(currentJobURL, false, false);
connect(
- listJob, TQT_SIGNAL(entries(TDEIO::Job*, const TDEIO::UDSEntryList&)),
- TQT_SLOT(slotEntries(TDEIO::Job*, const TDEIO::UDSEntryList&))
+ listJob, TQ_SIGNAL(entries(TDEIO::Job*, const TDEIO::UDSEntryList&)),
+ TQ_SLOT(slotEntries(TDEIO::Job*, const TDEIO::UDSEntryList&))
);
connect(
- listJob, TQT_SIGNAL(result(TDEIO::Job *)),
- TQT_SLOT(slotResult(TDEIO::Job *))
+ listJob, TQ_SIGNAL(result(TDEIO::Job *)),
+ TQ_SLOT(slotResult(TDEIO::Job *))
);
connect(
- listJob, TQT_SIGNAL(redirection(TDEIO::Job *, const KURL &)),
- TQT_SLOT(slotRedirection(TDEIO::Job *, const KURL &))
+ listJob, TQ_SIGNAL(redirection(TDEIO::Job *, const KURL &)),
+ TQ_SLOT(slotRedirection(TDEIO::Job *, const KURL &))
);
pendingAddDirectories.remove(pendingIt);
lastAddedSubDirectory = pendingAddDirectories.begin();