diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /examples/tablet/tabletstats.cpp | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
Diffstat (limited to 'examples/tablet/tabletstats.cpp')
-rw-r--r-- | examples/tablet/tabletstats.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/tablet/tabletstats.cpp b/examples/tablet/tabletstats.cpp index 771b59e25..1f72181d7 100644 --- a/examples/tablet/tabletstats.cpp +++ b/examples/tablet/tabletstats.cpp @@ -89,11 +89,11 @@ void StatsCanvas::tabletEvent( TQTabletEvent *e ) e->accept(); switch( e->type() ) { case TQEvent::TabletPress: - qDebug( "Tablet Press" ); + tqDebug( "Tablet Press" ); mousePressed = TRUE; break; case TQEvent::TabletRelease: - qDebug( "Tablet Release" ); + tqDebug( "Tablet Release" ); mousePressed = FALSE; clearScreen(); break; @@ -115,7 +115,7 @@ void StatsCanvas::tabletEvent( TQTabletEvent *e ) void StatsCanvas::mouseMoveEvent( TQMouseEvent *e ) { - qDebug( "Mouse Move" ); + tqDebug( "Mouse Move" ); // do nothing TQWidget::mouseMoveEvent( e ); } @@ -123,13 +123,13 @@ void StatsCanvas::mouseMoveEvent( TQMouseEvent *e ) void StatsCanvas::mousePressEvent( TQMouseEvent *e ) { - qDebug( "Mouse Press" ); + tqDebug( "Mouse Press" ); TQWidget::mousePressEvent( e ); } void StatsCanvas::mouseReleaseEvent( TQMouseEvent *e ) { - qDebug( "Mouse Release" ); + tqDebug( "Mouse Release" ); TQWidget::mouseReleaseEvent( e ); } |