diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-18 17:22:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-18 17:22:13 +0900 |
commit | fb6884ead2891c09ee54fca2d753fb8d34359e28 (patch) | |
tree | 64113a31b6adecba129f83ee44f365e303d086bc /doc/html/qpalette-h.html | |
parent | 2e817b4bc176ec571d5378e0f1bd85fe95364c6f (diff) | |
download | tqt3-fb6884ead2891c09ee54fca2d753fb8d34359e28.tar.gz tqt3-fb6884ead2891c09ee54fca2d753fb8d34359e28.zip |
Drop compatibility code for TQPalette
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/qpalette-h.html')
-rw-r--r-- | doc/html/qpalette-h.html | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/html/qpalette-h.html b/doc/html/qpalette-h.html index 6d36bf14a..5ae3ef1d1 100644 --- a/doc/html/qpalette-h.html +++ b/doc/html/qpalette-h.html @@ -158,7 +158,7 @@ public: ~TQPalette(); TQPalette &operator=( const TQPalette & ); - enum ColorGroup { Disabled, Active, Inactive, NColorGroups, Normal=Active }; + enum ColorGroup { Disabled, Active, Inactive, NColorGroups }; const TQColor &color( ColorGroup, TQColorGroup::ColorRole ) const; const TQBrush &brush( ColorGroup, TQColorGroup::ColorRole ) const; @@ -173,16 +173,10 @@ public: const TQColorGroup &active() const { return data->active; } const TQColorGroup &disabled() const { return data->disabled; } const TQColorGroup &inactive() const { return data->inactive; } -#ifndef TQT_NO_COMPAT - const TQColorGroup &normal() const { return active(); } -#endif void setActive( const TQColorGroup & ); void setDisabled( const TQColorGroup & ); void setInactive( const TQColorGroup & ); -#ifndef TQT_NO_COMPAT - void setNormal( const TQColorGroup & cg ) { setActive(cg); } -#endif bool operator==( const TQPalette &p ) const; bool operator!=( const TQPalette &p ) const |