summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actionlistview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/actionlistview.cpp')
-rw-r--r--kdevdesigner/designer/actionlistview.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdevdesigner/designer/actionlistview.cpp b/kdevdesigner/designer/actionlistview.cpp
index 7b687fe4..92b8a044 100644
--- a/kdevdesigner/designer/actionlistview.cpp
+++ b/kdevdesigner/designer/actionlistview.cpp
@@ -1,15 +1,15 @@
/**********************************************************************
** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
-** This file is part of Qt Designer.
+** This file is part of TQt Designer.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file.
**
-** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
-** licenses may use this file in accordance with the Qt Commercial License
+** Licensees holding valid TQt Enterprise Edition or TQt Professional Edition
+** licenses may use this file in accordance with the TQt Commercial License
** Agreement provided with the Software.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
@@ -17,7 +17,7 @@
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
-** information about Qt Commercial License Agreements.
+** information about TQt Commercial License Agreements.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
@@ -30,8 +30,8 @@
#include <klocale.h>
-ActionListView::ActionListView( TQWidget *parent, const char *name )
- : TQListView( parent, name )
+ActionListView::ActionListView( TQWidget *tqparent, const char *name )
+ : TQListView( tqparent, name )
{
setShowSortIndicator( TRUE );
setResizeMode( LastColumn );
@@ -43,18 +43,18 @@ ActionListView::ActionListView( TQWidget *parent, const char *name )
ActionItem::ActionItem( TQListView *lv, TQAction *ac )
: TQListViewItem( lv ), a( 0 ), g( 0 )
{
- g = ::qt_cast<QDesignerActionGroup*>(ac);
+ g = ::tqqt_cast<TQDesignerActionGroup*>(ac);
if ( !g )
- a = ::qt_cast<QDesignerAction*>(ac);
+ a = ::tqqt_cast<TQDesignerAction*>(ac);
setDragEnabled( TRUE );
}
ActionItem::ActionItem( TQListViewItem *i, TQAction *ac )
: TQListViewItem( i ), a( 0 ), g( 0 )
{
- g = ::qt_cast<QDesignerActionGroup*>(ac);
+ g = ::tqqt_cast<TQDesignerActionGroup*>(ac);
if ( !g )
- a = ::qt_cast<QDesignerAction*>(ac);
+ a = ::tqqt_cast<TQDesignerAction*>(ac);
setDragEnabled( TRUE );
moveToEnd();
}