summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrGotoPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrGotoPage.cpp')
-rw-r--r--kpresenter/KPrGotoPage.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kpresenter/KPrGotoPage.cpp b/kpresenter/KPrGotoPage.cpp
index fb9ef42a..d5d0ed24 100644
--- a/kpresenter/KPrGotoPage.cpp
+++ b/kpresenter/KPrGotoPage.cpp
@@ -33,8 +33,8 @@
KPrGotoPage::KPrGotoPage( const KPrDocument *doc,
const TQValueList<int> &slides, int start,
- TQWidget *tqparent, const char *name )
- : KDialogBase( tqparent, name, true, i18n("Goto Slide..."), Ok|Cancel),
+ TQWidget *parent, const char *name )
+ : KDialogBase( parent, name, true, i18n("Goto Slide..."), Ok|Cancel),
oldPage(start)
{
@@ -65,15 +65,15 @@ KPrGotoPage::KPrGotoPage( const KPrDocument *doc,
spinbox->setCurrentItem( spinbox->count()-1 );
}
- if ( tqparent )
- tqparent->setCursor( TQt::forbiddenCursor );
+ if ( parent )
+ parent->setCursor( TQt::forbiddenCursor );
}
int KPrGotoPage::gotoPage( const KPrDocument *doc,
const TQValueList<int> &slides, int start,
- TQWidget *tqparent)
+ TQWidget *parent)
{
- KPrGotoPage dia( doc, slides, start,tqparent, 0L );
+ KPrGotoPage dia( doc, slides, start,parent, 0L );
dia.exec();
dia.resetCursor();
return dia.page();