summaryrefslogtreecommitdiffstats
path: root/libkcal/period.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/period.h')
-rw-r--r--libkcal/period.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/libkcal/period.h b/libkcal/period.h
index aa87bfc9..64dd24d9 100644
--- a/libkcal/period.h
+++ b/libkcal/period.h
@@ -21,7 +21,7 @@
#ifndef KCAL_PERIOD_H
#define KCAL_PERIOD_H
-#include <qdatetime.h>
+#include <tqdatetime.h>
#include "libkcal_export.h"
#include "duration.h"
@@ -36,30 +36,30 @@ class KDE_EXPORT Period
{
public:
Period();
- Period( const QDateTime &start, const QDateTime &end );
- Period( const QDateTime &start, const Duration &duration );
+ Period( const TQDateTime &start, const TQDateTime &end );
+ Period( const TQDateTime &start, const Duration &duration );
/** Returns true if this element is smaller than the @param other one */
bool operator<( const Period& other );
- QDateTime start() const;
- QDateTime end() const;
+ TQDateTime start() const;
+ TQDateTime end() const;
Duration duration();
bool hasDuration()const;
- QString summary() const;
- void setSummary( const QString &summary );
- QString location() const;
- void setLocation( const QString &location );
+ TQString summary() const;
+ void setSummary( const TQString &summary );
+ TQString location() const;
+ void setLocation( const TQString &location );
private:
- QDateTime mStart;
- QDateTime mEnd;
+ TQDateTime mStart;
+ TQDateTime mEnd;
bool mHasDuration;
- QString mSummary;
- QString mLocation;
+ TQString mSummary;
+ TQString mLocation;
class Private;
Private *d;