summaryrefslogtreecommitdiffstats
path: root/src/translators/tellicoxmlexporter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-05 11:55:18 +0900
committerMichele Calgaro <[email protected]>2023-11-05 11:55:18 +0900
commitf57d24985e5b3c8b8c070388aedf6fa915b1c316 (patch)
treeaa86157b321acf5f8fb5385aac72142500d16bdf /src/translators/tellicoxmlexporter.cpp
parent30d2f3d2750a4ddee216eb64380781e593de6b25 (diff)
downloadtellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.tar.gz
tellico-f57d24985e5b3c8b8c070388aedf6fa915b1c316.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/translators/tellicoxmlexporter.cpp')
-rw-r--r--src/translators/tellicoxmlexporter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/translators/tellicoxmlexporter.cpp b/src/translators/tellicoxmlexporter.cpp
index de6003a..826b679 100644
--- a/src/translators/tellicoxmlexporter.cpp
+++ b/src/translators/tellicoxmlexporter.cpp
@@ -461,8 +461,8 @@ void TellicoXMLExporter::exportBorrowerXML(TQDomDocument& dom_, TQDomElement& pa
lElem.setAttribute(TQString::fromLatin1("uid"), it->uid());
lElem.setAttribute(TQString::fromLatin1("entryRef"), it->entry()->id());
- lElem.setAttribute(TQString::fromLatin1("loanDate"), it->loanDate().toString(Qt::ISODate));
- lElem.setAttribute(TQString::fromLatin1("dueDate"), it->dueDate().toString(Qt::ISODate));
+ lElem.setAttribute(TQString::fromLatin1("loanDate"), it->loanDate().toString(TQt::ISODate));
+ lElem.setAttribute(TQString::fromLatin1("dueDate"), it->dueDate().toString(TQt::ISODate));
if(it->inCalendar()) {
lElem.setAttribute(TQString::fromLatin1("calendar"), TQString::fromLatin1("true"));
}
@@ -479,7 +479,7 @@ TQWidget* TellicoXMLExporter::widget(TQWidget* parent_, const char* name_/*=0*/)
m_widget = new TQWidget(parent_, name_);
TQVBoxLayout* l = new TQVBoxLayout(m_widget);
- TQGroupBox* box = new TQGroupBox(1, Qt::Horizontal, i18n("Tellico XML Options"), m_widget);
+ TQGroupBox* box = new TQGroupBox(1, TQt::Horizontal, i18n("Tellico XML Options"), m_widget);
l->addWidget(box);
m_checkIncludeImages = new TQCheckBox(i18n("Include images in XML document"), box);