summaryrefslogtreecommitdiffstats
path: root/kugar/kudesigner_lib/view.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kugar/kudesigner_lib/view.cpp')
-rw-r--r--kugar/kudesigner_lib/view.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kugar/kudesigner_lib/view.cpp b/kugar/kudesigner_lib/view.cpp
index d021dc23..dc4af262 100644
--- a/kugar/kudesigner_lib/view.cpp
+++ b/kugar/kudesigner_lib/view.cpp
@@ -328,7 +328,7 @@ void View::contentsMousePressEvent( TQMouseEvent* e )
*/
switch ( e->button() )
{
- case Qt::LeftButton:
+ case TQt::LeftButton:
if ( itemToInsert )
{
// tqWarning("placing item");
@@ -362,7 +362,7 @@ void View::contentsMouseReleaseEvent( TQMouseEvent* e )
switch ( e->button() )
{
- case Qt::LeftButton:
+ case TQt::LeftButton:
if ( selectionStarted )
finishSelection();
break;
@@ -626,7 +626,7 @@ void View::contentsMouseMoveEvent( TQMouseEvent* e )
void View::contentsMouseDoubleClickEvent( TQMouseEvent *e )
{
ReportItem * item = 0L;
- if ( e->button() == Qt::LeftButton && m_canvas->selected.count() == 1 )
+ if ( e->button() == TQt::LeftButton && m_canvas->selected.count() == 1 )
item = dynamic_cast<ReportItem*>( m_canvas->selected.first() );
if ( item )
{