summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrRotationDialogImpl.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kpresenter/KPrRotationDialogImpl.cpp
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpresenter/KPrRotationDialogImpl.cpp')
-rw-r--r--kpresenter/KPrRotationDialogImpl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kpresenter/KPrRotationDialogImpl.cpp b/kpresenter/KPrRotationDialogImpl.cpp
index 6f7516983..4f2d59cae 100644
--- a/kpresenter/KPrRotationDialogImpl.cpp
+++ b/kpresenter/KPrRotationDialogImpl.cpp
@@ -33,8 +33,8 @@
#include "rotationpropertyui.h"
#include "KPrTextPreview.h"
-KPrRotationDialogImpl::KPrRotationDialogImpl( TQWidget *tqparent, const char* name )
-: KDialogBase( tqparent, name, true, i18n( "Rotation"), Ok|Cancel|Apply, Ok, true )
+KPrRotationDialogImpl::KPrRotationDialogImpl( TQWidget *parent, const char* name )
+: KDialogBase( parent, name, true, i18n( "Rotation"), Ok|Cancel|Apply, Ok, true )
, m_dialog( new RotationPropertyUI( this, name ) )
{
noSignals = false;
@@ -114,8 +114,8 @@ void KPrRotationDialogImpl::angleMode( int angle )
}
-KPrCircleToggle::KPrCircleToggle( TQWidget *tqparent, const TQString &image, int id )
- : TQLabel( tqparent )
+KPrCircleToggle::KPrCircleToggle( TQWidget *parent, const TQString &image, int id )
+ : TQLabel( parent )
{
KIconLoader il("kpresenter");
m_off = il.loadIcon("rotate/" + image, KIcon::NoGroup, 28);
@@ -125,7 +125,7 @@ KPrCircleToggle::KPrCircleToggle( TQWidget *tqparent, const TQString &image, int
m_id = id;
setMouseTracking(true);
setPixmap( m_off );
- KPrCircleGroup *cg = dynamic_cast<KPrCircleGroup*> (tqparent);
+ KPrCircleGroup *cg = dynamic_cast<KPrCircleGroup*> (parent);
if(cg != 0)
cg->add(this);
}
@@ -143,8 +143,8 @@ void KPrCircleToggle::setChecked(bool on) {
emit clicked(m_id);
}
-KPrCircleGroup::KPrCircleGroup(TQWidget *tqparent)
- : TQFrame(tqparent), m_buttons()
+KPrCircleGroup::KPrCircleGroup(TQWidget *parent)
+ : TQFrame(parent), m_buttons()
{
noSignals=false;
}