diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 631d7b9b0878ca3842496b5719f9c5803335e150 (patch) | |
tree | d09fe0c8cd6edfd28c9c7947b0af60ccc75fbb8d /src/kcolorcombo2.h | |
parent | 33f08e93132a53bf14f41f5f1e567eeea832b336 (diff) | |
download | basket-631d7b9b0878ca3842496b5719f9c5803335e150.tar.gz basket-631d7b9b0878ca3842496b5719f9c5803335e150.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/basket@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kcolorcombo2.h')
-rw-r--r-- | src/kcolorcombo2.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kcolorcombo2.h b/src/kcolorcombo2.h index e671dad..b76f538 100644 --- a/src/kcolorcombo2.h +++ b/src/kcolorcombo2.h @@ -49,7 +49,7 @@ class KColorPopup; * but this widget willn't be update and will still show the old one.\n * To be noticed of such color change and then update the widget with the new standard color, you can use one of those two methods: * @code - * void TQWidgetDerivate::paletteChange(const TQPalette &oldPalette) { // TQWidgetDerivate is a tqparent or near custom widget + * void TQWidgetDerivate::paletteChange(const TQPalette &oldPalette) { // TQWidgetDerivate is a parent or near custom widget * theComboBox->setDefaultColor(theNewDefaultColor); * TQWidget::paletteChange(oldPalette); * } @@ -105,19 +105,19 @@ class KColorCombo2 : public TQComboBox public: /** - * Constructs a color combobox with tqparent @p tqparent called @p name. + * Constructs a color combobox with parent @p parent called @p name. * @param color The initial selected color. If it is not valid, the default one will then be selected.\n * But if @p color is invalid and there is no default color, the result is undefined. * @param defaultColor The color to return if the user choose the default one. If it is not valid, the user willn't be allowed to choose a default one. */ - KColorCombo2(const TQColor &color, const TQColor &defaultColor, TQWidget *tqparent = 0, const char *name = 0); + KColorCombo2(const TQColor &color, const TQColor &defaultColor, TQWidget *parent = 0, const char *name = 0); /** - * Constructs a color combobox with tqparent @p tqparent called @p name.\n + * Constructs a color combobox with parent @p parent called @p name.\n * The user is not allowed to choose a default color, unless you call setDefaultColor() later. * @param color The initial selected color. If it is invalid, the result is undefined. */ - KColorCombo2(const TQColor &color, TQWidget *tqparent = 0L, const char *name = 0L); + KColorCombo2(const TQColor &color, TQWidget *parent = 0L, const char *name = 0L); /** * Destroys the combobox. @@ -225,7 +225,7 @@ class KColorCombo2 : public TQComboBox /** * Draw an image of a colored rounded-rectangle.\n - * This is like colorRectPixmap() but significantly faster because there is nothing to copy, and no transparency tqmask to create and apply. + * This is like colorRectPixmap() but significantly faster because there is nothing to copy, and no transparency mask to create and apply. * @param painter The painter where to draw the image. * @param x The x coordinate on the @p painter where to draw the rectangle. * @param y The y coordinate on the @p painter where to draw the rectangle. @@ -314,7 +314,7 @@ class KColorPopup : public TQWidget Q_OBJECT TQ_OBJECT public: - KColorPopup(KColorCombo2 *tqparent); + KColorPopup(KColorCombo2 *parent); ~KColorPopup(); void retqlayout(); // updateGeometry() ?? protected: |