diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:44:41 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:44:41 +0000 |
commit | a374efce3a207b39514be3c52264091400ce297e (patch) | |
tree | 77bdf654b55826d4f59b53a5621310206bcaead1 /ktouch/src/ktouchstatisticsdata.h | |
parent | f81a494f3957d5cf38c787973415597941934727 (diff) | |
download | tdeedu-a374efce3a207b39514be3c52264091400ce297e.tar.gz tdeedu-a374efce3a207b39514be3c52264091400ce297e.zip |
TQt4 port kdeedu
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1236073 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktouch/src/ktouchstatisticsdata.h')
-rw-r--r-- | ktouch/src/ktouchstatisticsdata.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ktouch/src/ktouchstatisticsdata.h b/ktouch/src/ktouchstatisticsdata.h index 15ab2f82..3ddbf941 100644 --- a/ktouch/src/ktouchstatisticsdata.h +++ b/ktouch/src/ktouchstatisticsdata.h @@ -113,7 +113,7 @@ class KTouchLevelStats { unsigned int m_words; ///< The number of typed words. unsigned int m_totalChars; ///< The total number of chars typed this level. unsigned int m_correctChars; ///< The total number of correctly typed chars. - QDateTime m_timeRecorded; ///< The time at which the level stats were recorded. + TQDateTime m_timeRecorded; ///< The time at which the level stats were recorded. }; @@ -148,7 +148,7 @@ class KTouchSessionStats { unsigned int m_words; ///< The number of typed words. unsigned int m_totalChars; ///< The total number of chars typed this session. unsigned int m_correctChars; ///< The total number of correctly typed chars. - QDateTime m_timeRecorded; ///< The time at which the session stats were recorded. + TQDateTime m_timeRecorded; ///< The time at which the session stats were recorded. }; @@ -171,7 +171,7 @@ class KTouchLectureStats { /// Writes the lecture statistics to the XML document. void write(TQDomDocument& doc, TQDomElement& root) const; - QString m_lectureTitle; ///< The descriptive title of the lecture. + TQString m_lectureTitle; ///< The descriptive title of the lecture. KURL m_lectureURL; ///< The descriptive title of the lecture. TQValueVector<KTouchLevelStats> m_levelStats; ///< The statistics for all levels in this lecture. |