diff options
Diffstat (limited to 'lib/kotext/KFontDialog_local.h')
-rw-r--r-- | lib/kotext/KFontDialog_local.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/kotext/KFontDialog_local.h b/lib/kotext/KFontDialog_local.h index bb69cf57..921946af 100644 --- a/lib/kotext/KFontDialog_local.h +++ b/lib/kotext/KFontDialog_local.h @@ -89,7 +89,7 @@ public: * <p> * The above creates a font chooser dialog with only SmoothScaleble fonts. * - * @param tqparent The tqparent widget. + * @param parent The parent widget. * @param name The widget name. * @param onlyFixed Only display fonts which have fixed-width * character sizes. @@ -109,7 +109,7 @@ public: * *sizeIsRelativeState, user choice may be retrieved by * calling sizeIsRelative(). */ - KFontChooser_local(TQWidget *tqparent = 0L, const char *name = 0L, + KFontChooser_local(TQWidget *parent = 0L, const char *name = 0L, bool onlyFixed = false, const TQStringList &fontList = TQStringList(), bool makeFrame = true, int visibleListSize=8, @@ -143,7 +143,7 @@ public: void setFont( const TQFont &font, bool onlyFixed = false ); /** - * @return The bittqmask corresponding to the attributes the user + * @return The bitmask corresponding to the attributes the user * wishes to change. */ int fontDiffFlags(); @@ -356,7 +356,7 @@ public: /** * Constructs a font selection dialog. * - * @param tqparent The tqparent widget of the dialog, if any. + * @param parent The parent widget of the dialog, if any. * @param name The name of the dialog. * @param modal Specifies whether the dialog is modal or not. * @param onlyFixed only display fonts which have fixed-width @@ -375,7 +375,7 @@ public: * calling sizeIsRelative(). * */ - KFontDialog_local( TQWidget *tqparent = 0L, const char *name = 0, + KFontDialog_local( TQWidget *parent = 0L, const char *name = 0, bool onlyFixed = false, bool modal = false, const TQStringList &fontlist = TQStringList(), bool makeFrame = true, bool diff = false, @@ -419,7 +419,7 @@ public: * @param theFont a reference to the font to write the chosen font * into. * @param onlyFixed if true, only select from fixed-width fonts. - * @param tqparent Parent widget of the dialog. Specifying a widget different + * @param parent Parent widget of the dialog. Specifying a widget different * from 0 (Null) improves centering (looks better). * @param makeFrame Draws a frame with titles around the contents. * @param sizeIsRelativeState If not zero the widget will show a @@ -432,7 +432,7 @@ public: * @return TQDialog::result(). */ static int getFont( TQFont &theFont, bool onlyFixed = false, - TQWidget *tqparent = 0L, bool makeFrame = true, + TQWidget *parent = 0L, bool makeFrame = true, TQButton::ToggleState *sizeIsRelativeState = 0L ); /** @@ -444,8 +444,8 @@ public: * @param theFont a reference to the font to write the chosen font * into. * @param diffFlags a reference to the int into which the chosen - * difference selection bittqmask should be written. - * Check the returned bittqmask like: + * difference selection bitmask should be written. + * Check the returned bitmask like: * \code * if ( diffFlags & KFontChooser_local::FontDiffFamily ) * [...] @@ -455,7 +455,7 @@ public: * [...] * \endcode * @param onlyFixed if true, only select from fixed-width fonts. - * @param tqparent Parent widget of the dialog. Specifying a widget different + * @param parent Parent widget of the dialog. Specifying a widget different * from 0 (Null) improves centering (looks better). * @param makeFrame Draws a frame with titles around the contents. * @param sizeIsRelativeState If not zero the widget will show a @@ -468,7 +468,7 @@ public: * @returns TQDialog::result(). */ static int getFontDiff( TQFont &theFont, int &diffFlags, bool onlyFixed = false, - TQWidget *tqparent = 0L, bool makeFrame = true, + TQWidget *parent = 0L, bool makeFrame = true, TQButton::ToggleState *sizeIsRelativeState = 0L ); /** @@ -479,7 +479,7 @@ public: * into. * @param theString a reference to the example text that was typed. * @param onlyFixed if true, only select from fixed-width fonts. - * @param tqparent Parent widget of the dialog. Specifying a widget different + * @param parent Parent widget of the dialog. Specifying a widget different * from 0 (Null) improves centering (looks better). * @param makeFrame Draws a frame with titles around the contents. * @param sizeIsRelativeState If not zero the widget will show a @@ -491,7 +491,7 @@ public: * @return The result of the dialog. */ static int getFontAndText( TQFont &theFont, TQString &theString, - bool onlyFixed = false, TQWidget *tqparent = 0L, + bool onlyFixed = false, TQWidget *parent = 0L, bool makeFrame = true, TQButton::ToggleState *sizeIsRelativeState = 0L ); |