summaryrefslogtreecommitdiffstats
path: root/libkcal/period.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /libkcal/period.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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;