summaryrefslogtreecommitdiffstats
path: root/libkdepim/tests/testdateedit.cpp
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 /libkdepim/tests/testdateedit.cpp
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 'libkdepim/tests/testdateedit.cpp')
-rw-r--r--libkdepim/tests/testdateedit.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libkdepim/tests/testdateedit.cpp b/libkdepim/tests/testdateedit.cpp
index bc244f13f..993967cb6 100644
--- a/libkdepim/tests/testdateedit.cpp
+++ b/libkdepim/tests/testdateedit.cpp
@@ -19,7 +19,7 @@
Boston, MA 02110-1301, USA.
*/
-#include <qlayout.h>
+#include <tqlayout.h>
#include <kaboutdata.h>
#include <kapplication.h>
@@ -31,19 +31,19 @@
#include "testdateedit.h"
-DateEdit::DateEdit( QWidget *parent, const char *name )
- : QWidget( parent, name )
+DateEdit::DateEdit( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
{
- QVBoxLayout *layout = new QVBoxLayout( this );
+ TQVBoxLayout *layout = new TQVBoxLayout( this );
KDateEdit *edit = new KDateEdit( this );
layout->addWidget( edit );
- connect( edit, SIGNAL( dateChanged( const QDate& ) ),
- this, SLOT( dateChanged( const QDate& ) ) );
+ connect( edit, TQT_SIGNAL( dateChanged( const TQDate& ) ),
+ this, TQT_SLOT( dateChanged( const TQDate& ) ) );
}
-void DateEdit::dateChanged( const QDate &date )
+void DateEdit::dateChanged( const TQDate &date )
{
if ( date.isValid() )
qDebug( "%s", date.toString().latin1() );