summaryrefslogtreecommitdiffstats
path: root/kppp/logview/monthly.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/logview/monthly.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/logview/monthly.h')
-rw-r--r--kppp/logview/monthly.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kppp/logview/monthly.h b/kppp/logview/monthly.h
index a77f7bfe..bfe5407e 100644
--- a/kppp/logview/monthly.h
+++ b/kppp/logview/monthly.h
@@ -23,12 +23,12 @@
#define __MONTHLY__H__
#include "log.h"
-#include <qwidget.h>
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qpushbutton.h>
-#include <qvaluelist.h>
-#include <qdatetime.h>
+#include <tqwidget.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqpushbutton.h>
+#include <tqvaluelist.h>
+#include <tqdatetime.h>
#include <kbuttonbox.h>
@@ -36,10 +36,10 @@ class KListView;
class QComboBox;
class LogListItem;
-class MonthlyWidget : public QWidget {
+class MonthlyWidget : public TQWidget {
Q_OBJECT
public:
- MonthlyWidget(QWidget *parent = 0);
+ MonthlyWidget(TQWidget *parent = 0);
private slots:
void prevMonth();
@@ -56,25 +56,25 @@ private:
/**
* Returns the first day in the period
*/
- QDate periodeFirst() const;
+ TQDate periodeFirst() const;
/**
* Returns the last day in the period
*/
- QDate periodeLast() const;
+ TQDate periodeLast() const;
- QDate m_periodeFirst; // First day in month
+ TQDate m_periodeFirst; // First day in month
//int _month, _year;
- QComboBox *cboConnections;
+ TQComboBox *cboConnections;
KButtonBox *bbox;
KListView *lv;
KListView *lv2;
LogListItem* selectionItem;
- QLabel *title;
- QPushButton *next, *prev, *today, *exportBttn;
- QValueList<QString> lstConnections;
- QGridLayout *tl;
- QDateTime *dt;
+ TQLabel *title;
+ TQPushButton *next, *prev, *today, *exportBttn;
+ TQValueList<TQString> lstConnections;
+ TQGridLayout *tl;
+ TQDateTime *dt;
};
#endif