summaryrefslogtreecommitdiffstats
path: root/redhat/tdelibs/kdelibs-3.5.13-fix_slide_drawing.patch
blob: e5b49916735a829a2318c9a4755565094b3eef6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
commit a1c30c142a7b631d6ff66f12d8b48c9aec07190f
Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
Date:   1331881108 -0500

    Fix slider drawing on external paint devices

diff --git a/tdefx/kstyle.cpp b/tdefx/kstyle.cpp
index d4cb9bd..0220840 100644
--- a/kdefx/kstyle.cpp
+++ b/kdefx/kstyle.cpp
@@ -1138,11 +1138,14 @@ void KStyle::drawComplexControl( TQ_ComplexControl control,
 			last    = querySubControlMetrics(control, widget, SC_ScrollBarLast,    opt);
 			subline2 = addline;
 
-			if ( useThreeButtonScrollBar )
-				if (horizontal)
+			if ( useThreeButtonScrollBar ) {
+				if (horizontal) {
 					subline2.moveBy(-addline.width(), 0);
-				else
+				}
+				else {
 					subline2.moveBy(0, -addline.height());
+				}
+			}
 
 			// Draw the up/left button set
 			if ((controls & SC_ScrollBarSubLine) && subline.isValid()) {
@@ -1238,7 +1241,14 @@ void KStyle::drawComplexControl( TQ_ComplexControl control,
 			}
 
 			p2.end();
-			bitBlt((TQWidget*)widget, r.x(), r.y(), &pix);
+
+			TQPaintDevice* ppd = p->device();
+			if (ppd->isExtDev()) {
+				p->drawPixmap(0, 0, pix);
+			}
+			else {
+				bitBlt((TQWidget*)widget, r.x(), r.y(), &pix);
+			}
 			break;
 		}
 
@@ -2105,7 +2115,6 @@ TQImage TransparencyHandler::handleRealAlpha(TQImage img) {
 	for (int y = 0; y < h; ++y) {
 		TQRgb *ls = (TQRgb *)clearImage.scanLine( y );
 		for (int x = 0; x < w; ++x) {
-			TQRgb l = ls[x];
 			ls[x] = tqRgba( 0, 0, 0, 0 );
 		}
 	}