summaryrefslogtreecommitdiffstats
path: root/kiconedit/kresize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiconedit/kresize.cpp')
-rw-r--r--kiconedit/kresize.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kiconedit/kresize.cpp b/kiconedit/kresize.cpp
index b290cce7..ac98e214 100644
--- a/kiconedit/kresize.cpp
+++ b/kiconedit/kresize.cpp
@@ -28,8 +28,8 @@
#include "kresize.h"
-KResizeWidget::KResizeWidget( TQWidget* tqparent, const char* name,
- const TQSize& size ) : TQWidget( tqparent, name )
+KResizeWidget::KResizeWidget( TQWidget* parent, const char* name,
+ const TQSize& size ) : TQWidget( parent, name )
{
TQHBoxLayout* genLayout = new TQHBoxLayout( this );
@@ -62,9 +62,9 @@ const TQSize KResizeWidget::getSize()
return TQSize( m_width->value(), m_height->value() );
}
-KResizeDialog::KResizeDialog( TQWidget* tqparent, const char* name,
+KResizeDialog::KResizeDialog( TQWidget* parent, const char* name,
const TQSize size )
- : KDialogBase( tqparent, name, true, i18n( "Select Size" ), Ok|Cancel )
+ : KDialogBase( parent, name, true, i18n( "Select Size" ), Ok|Cancel )
{
m_resize = new KResizeWidget( this, "resize widget", size );