summaryrefslogtreecommitdiffstats
path: root/kdeui/ktimewidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/ktimewidget.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/ktimewidget.h')
-rw-r--r--kdeui/ktimewidget.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeui/ktimewidget.h b/kdeui/ktimewidget.h
index 1e263dafd..b9808f0e8 100644
--- a/kdeui/ktimewidget.h
+++ b/kdeui/ktimewidget.h
@@ -19,8 +19,8 @@
#ifndef __KTIMEWIDGET__
#define __KTIMEWIDGET__
-#include <qwidget.h>
-#include <qdatetime.h>
+#include <tqwidget.h>
+#include <tqdatetime.h>
#include <kdelibs_export.h>
@@ -37,20 +37,20 @@
class KDEUI_EXPORT KTimeWidget : public QWidget
{
Q_OBJECT
- Q_PROPERTY( QTime time READ time WRITE setTime )
+ Q_PROPERTY( TQTime time READ time WRITE setTime )
public:
/**
* Constructs a time selection widget.
*/
- KTimeWidget(QWidget * parent = 0, const char * name = 0);
+ KTimeWidget(TQWidget * parent = 0, const char * name = 0);
/**
* Constructs a time selection widget with the initial time set to
* @p time.
*/
- KTimeWidget(const QTime & time,
- QWidget * parent = 0, const char * name = 0 );
+ KTimeWidget(const TQTime & time,
+ TQWidget * parent = 0, const char * name = 0 );
/**
* Destructs the time selection widget.
@@ -60,20 +60,20 @@ public:
/**
* Returns the currently selected time.
*/
- QTime time() const;
+ TQTime time() const;
public slots:
/**
* Changes the selected time to @p time.
*/
- void setTime(const QTime & time);
+ void setTime(const TQTime & time);
signals:
/**
* Emitted whenever the time of the widget
* is changed, either with setTime() or via user selection.
*/
- void valueChanged(const QTime & time);
+ void valueChanged(const TQTime & time);
private:
void init();