summaryrefslogtreecommitdiffstats
path: root/src/newstuff/manager.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-05 11:55:18 +0900
committerMichele Calgaro <[email protected]>2023-11-05 20:59:31 +0900
commit034ed63e8dcd4071ff2857fb066f90b60313216f (patch)
treed8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/newstuff/manager.cpp
parent59252e910c0a40943329918aeead9293d5ee82e0 (diff)
downloadtellico-034ed63e8dcd4071ff2857fb066f90b60313216f.tar.gz
tellico-034ed63e8dcd4071ff2857fb066f90b60313216f.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/newstuff/manager.cpp')
-rw-r--r--src/newstuff/manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newstuff/manager.cpp b/src/newstuff/manager.cpp
index 9fed36e..bb8ebba 100644
--- a/src/newstuff/manager.cpp
+++ b/src/newstuff/manager.cpp
@@ -259,7 +259,7 @@ Tellico::NewStuff::InstallStatus Manager::installStatus(KNS::Entry* entry_) {
return NotInstalled;
}
- TQDate date = TQDate::fromString(datestring, Qt::ISODate);
+ TQDate date = TQDate::fromString(datestring, TQt::ISODate);
if(!date.isValid()) {
return NotInstalled;
}
@@ -404,7 +404,7 @@ void Manager::slotInstallFinished() {
// of the newstuff entry, so we can track which entries are installed
// name and entry-name() are probably the same for scripts, but not a problem
config.writeEntry(name, entry->name());
- config.writeEntry(entry->name(), TQString(entry->releaseDate().toString(Qt::ISODate)));
+ config.writeEntry(entry->name(), TQString(entry->releaseDate().toString(TQt::ISODate)));
config.sync();
emit signalInstalled(entry);
} else {