summaryrefslogtreecommitdiffstats
path: root/lib/pilotDateEntry.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:55:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 20:59:03 +0900
commit255ec90652e66d27443b5506c4c08e93d3cf0b5a (patch)
tree4692841a43093287f1eb691d63282afcab546e21 /lib/pilotDateEntry.cpp
parent1a31fdd3d3ee375e5e104f2e6577939216bed7c6 (diff)
downloadkpilot-255ec90652e66d27443b5506c4c08e93d3cf0b5a.tar.gz
kpilot-255ec90652e66d27443b5506c4c08e93d3cf0b5a.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 26c96fa9fb6cc8983ae6e94f5b2d606c70f09297)
Diffstat (limited to 'lib/pilotDateEntry.cpp')
-rw-r--r--lib/pilotDateEntry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/pilotDateEntry.cpp b/lib/pilotDateEntry.cpp
index 58da804..18897d3 100644
--- a/lib/pilotDateEntry.cpp
+++ b/lib/pilotDateEntry.cpp
@@ -174,7 +174,7 @@ TQString PilotDateEntry::getTextRepresentation(TQt::TextFormat richText)
text += ps;
TQDateTime dt(readTm(getEventStart()));
- TQString startDate(dt.toString(Qt::LocalDate));
+ TQString startDate(dt.toString(TQt::LocalDate));
text+=par;
text+=i18n("Start date: %1").arg(startDate);
text+=ps;
@@ -188,7 +188,7 @@ TQString PilotDateEntry::getTextRepresentation(TQt::TextFormat richText)
else
{
dt=readTm(getEventEnd());
- TQString endDate(dt.toString(Qt::LocalDate));
+ TQString endDate(dt.toString(TQt::LocalDate));
text+=par;
text+=i18n("End date: %1").arg(endDate);
text+=ps;
@@ -237,7 +237,7 @@ TQString PilotDateEntry::getTextRepresentation(TQt::TextFormat richText)
else
{
dt = readTm(getRepeatEnd()).date();
- text+=i18n("Until %1").arg(dt.toString(Qt::LocalDate));
+ text+=i18n("Until %1").arg(dt.toString(TQt::LocalDate));
}
text+=br;
@@ -264,7 +264,7 @@ TQString PilotDateEntry::getTextRepresentation(TQt::TextFormat richText)
for (int i = 0; i < getExceptionCount(); i++)
{
TQDate exdt=readTm(getExceptions()[i]).date();
- text+=exdt.toString(Qt::LocalDate);
+ text+=exdt.toString(TQt::LocalDate);
text+=br;
}
text+=ps;