summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/gpssync/gpsdataparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/gpssync/gpsdataparser.h')
-rw-r--r--kipi-plugins/gpssync/gpsdataparser.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/gpssync/gpsdataparser.h b/kipi-plugins/gpssync/gpsdataparser.h
index 121a97e..953073e 100644
--- a/kipi-plugins/gpssync/gpsdataparser.h
+++ b/kipi-plugins/gpssync/gpsdataparser.h
@@ -24,10 +24,10 @@
#ifndef GPSDATAPARSER_H
#define GPSDATAPARSER_H
-// Qt includes.
+// TQt includes.
-#include <qdatetime.h>
-#include <qmap.h>
+#include <tqdatetime.h>
+#include <tqmap.h>
// KDE includes.
@@ -52,19 +52,19 @@ public:
void clear();
int numPoints();
- bool matchDate(const QDateTime& photoDateTime, int maxGapTime, int timeZone,
+ bool matchDate(const TQDateTime& photoDateTime, int maxGapTime, int timeZone,
bool interpolate, int interpolationDstTime,
GPSDataContainer& gpsData);
private:
// Methods used to perform interpolation.
- QDateTime findNextDate(const QDateTime& dateTime, int secs);
- QDateTime findPrevDate(const QDateTime& dateTime, int secs);
+ TQDateTime findNextDate(const TQDateTime& dateTime, int secs);
+ TQDateTime findPrevDate(const TQDateTime& dateTime, int secs);
protected:
- typedef QMap<QDateTime, GPSDataContainer> GPSDataMap;
+ typedef TQMap<TQDateTime, GPSDataContainer> GPSDataMap;
GPSDataMap m_GPSDataMap;
};