diff options
Diffstat (limited to 'src/newstuff')
-rw-r--r-- | src/newstuff/dialog.cpp | 2 | ||||
-rw-r--r-- | src/newstuff/manager.cpp | 4 |
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 { |