summaryrefslogtreecommitdiffstats
path: root/doc/html/qgfx_qws-h.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 02:13:42 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-27 02:13:42 -0600
commit520c05ef06ce203ad32470730f68402bc7719157 (patch)
tree8d0bb18bbbecb4c837e232848905e5819db84b81 /doc/html/qgfx_qws-h.html
parentb82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff)
downloadtqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz
tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip
Automated update from qt3
Diffstat (limited to 'doc/html/qgfx_qws-h.html')
-rw-r--r--doc/html/qgfx_qws-h.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/qgfx_qws-h.html b/doc/html/qgfx_qws-h.html
index 85705096..ecaee5af 100644
--- a/doc/html/qgfx_qws-h.html
+++ b/doc/html/qgfx_qws-h.html
@@ -113,9 +113,9 @@ inline ushort qt_convRgbTo16( const int r, const int g, const int b )
inline ushort qt_convRgbTo16( TQRgb c )
{
- const int tr = qRed(c) &lt;&lt; qt_red_shift;
- const int tg = qGreen(c) &lt;&lt; qt_green_shift;
- const int tb = qBlue(c) &gt;&gt; qt_neg_blue_shift;
+ const int tr = tqRed(c) &lt;&lt; qt_red_shift;
+ const int tg = tqGreen(c) &lt;&lt; qt_green_shift;
+ const int tb = tqBlue(c) &gt;&gt; qt_neg_blue_shift;
return (tb &amp; qt_blue_mask) | (tg &amp; qt_green_mask) | (tr &amp; qt_red_mask);
}
@@ -129,7 +129,7 @@ inline TQRgb qt_conv16ToRgb( ushort c )
const int tg = g &gt;&gt; qt_green_shift;
const int tb = b &lt;&lt; qt_neg_blue_shift;
- return qRgb(tr,tg,tb);
+ return tqRgb(tr,tg,tb);
}
inline void qt_conv16ToRgb( ushort c, int&amp; r, int&amp; g, int&amp; b )