summaryrefslogtreecommitdiffstats
path: root/src/newstuff
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:55:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 20:59:31 +0900
commit034ed63e8dcd4071ff2857fb066f90b60313216f (patch)
treed8f02d03c1f9c77442c59c55ea75f5cb6539dec4 /src/newstuff
parent59252e910c0a40943329918aeead9293d5ee82e0 (diff)
downloadtellico-034ed63e.tar.gz
tellico-034ed63e.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f57d24985e5b3c8b8c070388aedf6fa915b1c316)
Diffstat (limited to 'src/newstuff')
-rw-r--r--src/newstuff/dialog.cpp2
-rw-r--r--src/newstuff/manager.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/newstuff/dialog.cpp b/src/newstuff/dialog.cpp
index 52a1922..58bfb64 100644
--- a/src/newstuff/dialog.cpp
+++ b/src/newstuff/dialog.cpp
@@ -109,7 +109,7 @@ Dialog::Dialog(NewStuff::DataType type_, TQWidget* parent_)
TQFrame* frame = plainPage();
TQBoxLayout* boxLayout = new TQVBoxLayout(frame, 0, KDialog::spacingHint());
- m_split = new TQSplitter(Qt::Vertical, frame);
+ m_split = new TQSplitter(TQt::Vertical, frame);
boxLayout->addWidget(m_split);
m_listView = new GUI::ListView(m_split);
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 {