diff options
Diffstat (limited to 'kppp/logview/loginfo.h')
-rw-r--r-- | kppp/logview/loginfo.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kppp/logview/loginfo.h b/kppp/logview/loginfo.h index 6e1fa7fc..de4b79fc 100644 --- a/kppp/logview/loginfo.h +++ b/kppp/logview/loginfo.h @@ -22,22 +22,22 @@ #define __LOGINFO__H__ #define MYDEBUG -#include <qdatetime.h> -#include <qstring.h> +#include <tqdatetime.h> +#include <tqstring.h> #include <time.h> class LogInfo { public: - LogInfo(QCString data); + LogInfo(TQCString data); int error() const; - QDateTime from() const; + TQDateTime from() const; time_t from_t() const { return _from; } - QDateTime until() const; + TQDateTime until() const; int duration() const; - QString connectionName() const; - QString currency() const; + TQString connectionName() const; + TQString currency() const; double sessionCosts() const; double totalCosts() const; double bytesIn() const; @@ -49,12 +49,12 @@ public: #endif private: - void parse(QCString ); + void parse(TQCString ); int errorfield; time_t _from, _until; - QString _conname, _currency; + TQString _conname, _currency; double _session_cost, _total_cost; double _bytes_in, _bytes_out; }; |