diff options
Diffstat (limited to 'lib/kotext/KoAutoFormatDia.cpp')
-rw-r--r-- | lib/kotext/KoAutoFormatDia.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/kotext/KoAutoFormatDia.cpp b/lib/kotext/KoAutoFormatDia.cpp index 90b1a97d3..e6dce371e 100644 --- a/lib/kotext/KoAutoFormatDia.cpp +++ b/lib/kotext/KoAutoFormatDia.cpp @@ -37,8 +37,8 @@ #include <tqdir.h> #include <tqapplication.h> -KoAutoFormatLineEdit::KoAutoFormatLineEdit ( TQWidget * tqparent, const char * name ) - : TQLineEdit(tqparent,name) +KoAutoFormatLineEdit::KoAutoFormatLineEdit ( TQWidget * parent, const char * name ) + : TQLineEdit(parent,name) { } @@ -58,8 +58,8 @@ void KoAutoFormatLineEdit::keyPressEvent ( TQKeyEvent *ke ) /* Class: KoAutoFormatExceptionWidget */ /******************************************************************/ -KoAutoFormatExceptionWidget::KoAutoFormatExceptionWidget(TQWidget *tqparent, const TQString &name,const TQStringList &_list, bool _autoInclude, bool _abreviation) - :TQWidget( tqparent ) +KoAutoFormatExceptionWidget::KoAutoFormatExceptionWidget(TQWidget *parent, const TQString &name,const TQStringList &_list, bool _autoInclude, bool _abreviation) + :TQWidget( parent ) { m_bAbbreviation=_abreviation; m_listException=_list; @@ -166,10 +166,10 @@ void KoAutoFormatExceptionWidget::slotExceptionListSelected() /* Class: KoAutoFormatDia */ /******************************************************************/ -KoAutoFormatDia::KoAutoFormatDia( TQWidget *tqparent, const char *name, +KoAutoFormatDia::KoAutoFormatDia( TQWidget *parent, const char *name, KoAutoFormat * autoFormat ) : KDialogBase( Tabbed, i18n("Autocorrection"), Ok | Cancel | User1, Ok, - tqparent, name, true, true, KGuiItem( i18n( "&Reset" ), "undo" )), + parent, name, true, true, KGuiItem( i18n( "&Reset" ), "undo" )), oSimpleBegin( autoFormat->getConfigTypographicSimpleQuotes().begin ), oSimpleEnd( autoFormat->getConfigTypographicSimpleQuotes().end ), oDoubleBegin( autoFormat->getConfigTypographicDoubleQuotes().begin ), |