summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/dialogs/tqfontdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/dialogs/tqfontdialog.cpp')
-rw-r--r--tqtinterface/qt4/src/dialogs/tqfontdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/tqtinterface/qt4/src/dialogs/tqfontdialog.cpp b/tqtinterface/qt4/src/dialogs/tqfontdialog.cpp
index 5a10f04..deed5d5 100644
--- a/tqtinterface/qt4/src/dialogs/tqfontdialog.cpp
+++ b/tqtinterface/qt4/src/dialogs/tqfontdialog.cpp
@@ -146,15 +146,15 @@ public:
Use setFont() to set the initial font attributes.
- The \a tqparent, \a name, \a modal and \a f parameters are passed to
+ The \a parent, \a name, \a modal and \a f parameters are passed to
the TQDialog constructor.
\sa getFont()
*/
-TQFontDialog::TQFontDialog( TQWidget *tqparent, const char *name,
+TQFontDialog::TQFontDialog( TQWidget *parent, const char *name,
bool modal, WFlags f )
- : TQDialog( tqparent, name, modal, f )
+ : TQDialog( parent, name, modal, f )
{
setSizeGripEnabled( TRUE );
d = new TQFontDialogPrivate;
@@ -321,7 +321,7 @@ TQFontDialog::~TQFontDialog()
If the user clicks OK, the selected font is returned. If the user
clicks Cancel, the \a initial font is returned.
- The dialog is called \a name, with the tqparent \a tqparent.
+ The dialog is called \a name, with the parent \a parent.
\a initial is the initially selected font.
If the \a ok parameter is not-null, \e *\a ok is set to TRUE if the
user clicked OK, and set to FALSE if the user clicked Cancel.
@@ -349,9 +349,9 @@ TQFontDialog::~TQFontDialog()
used, and if they click Cancel the original font is used.
*/
TQFont TQFontDialog::getFont( bool *ok, const TQFont &initial,
- TQWidget *tqparent, const char* name)
+ TQWidget *parent, const char* name)
{
- return getFont( ok, &initial, tqparent, name );
+ return getFont( ok, &initial, parent, name );
}
/*!
@@ -362,7 +362,7 @@ TQFont TQFontDialog::getFont( bool *ok, const TQFont &initial,
If the user clicks OK, the selected font is returned. If the user
clicks Cancel, the TQt default font is returned.
- The dialog is called \a name, with tqparent \a tqparent.
+ The dialog is called \a name, with parent \a parent.
If the \a ok parameter is not-null, \e *\a ok is set to TRUE if the
user clicked OK, and FALSE if the user clicked Cancel.
@@ -382,19 +382,19 @@ TQFont TQFontDialog::getFont( bool *ok, const TQFont &initial,
\endcode
*/
-TQFont TQFontDialog::getFont( bool *ok, TQWidget *tqparent,const char* name)
+TQFont TQFontDialog::getFont( bool *ok, TQWidget *parent,const char* name)
{
- return getFont( ok, 0, tqparent, name );
+ return getFont( ok, 0, parent, name );
}
TQFont TQFontDialog::getFont( bool *ok, const TQFont *def,
- TQWidget *tqparent, const char* name)
+ TQWidget *parent, const char* name)
{
TQFont result;
if ( def )
result = *def;
- TQFontDialog *dlg = new TQFontDialog( tqparent, name, TRUE );
+ TQFontDialog *dlg = new TQFontDialog( parent, name, TRUE );
dlg->setFont( ( def ? *def : TQFont() ) );
#ifndef TQT_NO_WIDGET_TOPEXTRA