summaryrefslogtreecommitdiffstats
path: root/examples/tablet
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
commit9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch)
treedf1e10cc7504665622d096f9ba80dc9e56f3afb8 /examples/tablet
parenta830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff)
downloadqt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz
qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip
Undo prior accidental commit
Diffstat (limited to 'examples/tablet')
-rw-r--r--examples/tablet/tabletstats.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/tablet/tabletstats.cpp b/examples/tablet/tabletstats.cpp
index 8e6360b..a6e91fb 100644
--- a/examples/tablet/tabletstats.cpp
+++ b/examples/tablet/tabletstats.cpp
@@ -89,11 +89,11 @@ void StatsCanvas::tabletEvent( QTabletEvent *e )
e->accept();
switch( e->type() ) {
case QEvent::TabletPress:
- tqDebug( "Tablet Press" );
+ qDebug( "Tablet Press" );
mousePressed = TRUE;
break;
case QEvent::TabletRelease:
- tqDebug( "Tablet Release" );
+ qDebug( "Tablet Release" );
mousePressed = FALSE;
clearScreen();
break;
@@ -115,7 +115,7 @@ void StatsCanvas::tabletEvent( QTabletEvent *e )
void StatsCanvas::mouseMoveEvent( QMouseEvent *e )
{
- tqDebug( "Mouse Move" );
+ qDebug( "Mouse Move" );
// do nothing
QWidget::mouseMoveEvent( e );
}
@@ -123,13 +123,13 @@ void StatsCanvas::mouseMoveEvent( QMouseEvent *e )
void StatsCanvas::mousePressEvent( QMouseEvent *e )
{
- tqDebug( "Mouse Press" );
+ qDebug( "Mouse Press" );
QWidget::mousePressEvent( e );
}
void StatsCanvas::mouseReleaseEvent( QMouseEvent *e )
{
- tqDebug( "Mouse Release" );
+ qDebug( "Mouse Release" );
QWidget::mouseReleaseEvent( e );
}