summaryrefslogtreecommitdiff
path: root/qt
Unidiff
Diffstat (limited to 'qt') (more/less context) (ignore whitespace changes)
-rw-r--r--qt/qt-2.3.7.patch/qte237-all.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt/qt-2.3.7.patch/qte237-all.patch b/qt/qt-2.3.7.patch/qte237-all.patch
index 43d7a69..daf0e9c 100644
--- a/qt/qt-2.3.7.patch/qte237-all.patch
+++ b/qt/qt-2.3.7.patch/qte237-all.patch
@@ -687,128 +687,139 @@
687 QT_TRANS_GFX_BASE<depth,type>::drawPolygon( a, w, idx, num ); 687 QT_TRANS_GFX_BASE<depth,type>::drawPolygon( a, w, idx, num );
688 } else { 688 } else {
689@@ -819,29 +819,29 @@ 689@@ -819,29 +819,29 @@
690 template <const int depth, const int type> 690 template <const int depth, const int type>
691 void QGfxTransformedRaster<depth,type>::processSpans( int n, QPoint* point, int* width ) 691 void QGfxTransformedRaster<depth,type>::processSpans( int n, QPoint* point, int* width )
692 { 692 {
693- if ( inDraw || patternedbrush && srcwidth != 0 && srcheight != 0 ) { 693- if ( inDraw || patternedbrush && srcwidth != 0 && srcheight != 0 ) {
694+ if ( inDraw || this->patternedbrush && this->srcwidth != 0 && this->srcheight != 0 ) { 694+ if ( inDraw || this->patternedbrush && this->srcwidth != 0 && this->srcheight != 0 ) {
695 //in the patternedbrush case, we let blt do the transformation 695 //in the patternedbrush case, we let blt do the transformation
696 // so we leave inDraw false. 696 // so we leave inDraw false.
697 - QT_TRANS_GFX_BASE<depth,type>::processSpans( n, point, width ); 697 - QT_TRANS_GFX_BASE<depth,type>::processSpans( n, point, width );
698 +QT_TRANS_GFX_BASE<depth,type>::processSpans( n, point, width ); 698 +QT_TRANS_GFX_BASE<depth,type>::processSpans( n, point, width );
699 } else { 699 } else {
700 inDraw = TRUE; 700 inDraw = TRUE;
701 while (n--) { 701 while (n--) {
702 if ( *width > 0 ) { 702 if ( *width > 0 ) {
703 - int x=tx(point->x(),point->y())+xoffs; 703 - int x=tx(point->x(),point->y())+xoffs;
704 - int y=ty(point->x(),point->y())+yoffs; 704 - int y=ty(point->x(),point->y())+yoffs;
705 + int x=tx(point->x(),point->y())+this->xoffs; 705 + int x=tx(point->x(),point->y())+this->xoffs;
706 + int y=ty(point->x(),point->y())+this->yoffs; 706 + int y=ty(point->x(),point->y())+this->yoffs;
707 707
708 switch( qt_trans_screen->transformation() ) { 708 switch( qt_trans_screen->transformation() ) {
709 case QTransformedScreen::Rot90: 709 case QTransformedScreen::Rot90:
710 - vline( x, y-(*width-1), y ); 710 - vline( x, y-(*width-1), y );
711 + this->vline( x, y-(*width-1), y ); 711 + this->vline( x, y-(*width-1), y );
712 break; 712 break;
713 case QTransformedScreen::Rot180: 713 case QTransformedScreen::Rot180:
714 - hline( x - (*width-1), x, y ); 714 - hline( x - (*width-1), x, y );
715 + this->hline( x - (*width-1), x, y ); 715 + this->hline( x - (*width-1), x, y );
716 break; 716 break;
717 case QTransformedScreen::Rot270: 717 case QTransformedScreen::Rot270:
718 - vline( x, y, y+*width-1 ); 718 - vline( x, y, y+*width-1 );
719 + this->vline( x, y, y+*width-1 ); 719 + this->vline( x, y, y+*width-1 );
720 break; 720 break;
721 default: 721 default:
722 - hline( x, x+*width-1, y ); 722 - hline( x, x+*width-1, y );
723 + this->hline( x, x+*width-1, y ); 723 + this->hline( x, x+*width-1, y );
724 break; 724 break;
725 } 725 }
726 } 726 }
727@@ -896,14 +896,14 @@ 727@@ -896,14 +896,14 @@
728 switch ( qt_trans_screen->transformation() ) { 728 switch ( qt_trans_screen->transformation() ) {
729 case QTransformedScreen::Rot90: 729 case QTransformedScreen::Rot90:
730 rsx = sy; 730 rsx = sy;
731 - rsy = srcwidth - sx - w; 731 - rsy = srcwidth - sx - w;
732 + rsy = this->srcwidth - sx - w; 732 + rsy = this->srcwidth - sx - w;
733 break; 733 break;
734 case QTransformedScreen::Rot180: 734 case QTransformedScreen::Rot180:
735 - rsx = srcwidth - sx - w; 735 - rsx = srcwidth - sx - w;
736 - rsy = srcheight - sy - h; 736 - rsy = srcheight - sy - h;
737 + rsx = this->srcwidth - sx - w; 737 + rsx = this->srcwidth - sx - w;
738 + rsy = this->srcheight - sy - h; 738 + rsy = this->srcheight - sy - h;
739 break; 739 break;
740 case QTransformedScreen::Rot270: 740 case QTransformedScreen::Rot270:
741 - rsx = srcheight - sy - h; 741 - rsx = srcheight - sy - h;
742 + rsx = this->srcheight - sy - h; 742 + rsx = this->srcheight - sy - h;
743 rsy = sx; 743 rsy = sx;
744 break; 744 break;
745 default: 745 default:
746@@ -941,39 +941,39 @@ 746@@ -941,39 +941,39 @@
747 r.setCoords( tx(rx,ry), ty(rx,ry), tx(rx+w-1,ry+h-1), ty(rx+w-1,ry+h-1) ); 747 r.setCoords( tx(rx,ry), ty(rx,ry), tx(rx+w-1,ry+h-1), ty(rx+w-1,ry+h-1) );
748 r = r.normalize(); 748 r = r.normalize();
749 749
750- QPoint oldBrushOffs = brushoffs; 750- QPoint oldBrushOffs = brushoffs;
751+ QPoint oldBrushOffs = this->brushoffs; 751+ QPoint oldBrushOffs = this->brushoffs;
752 int brx, bry; 752 int brx, bry;
753 switch ( qt_trans_screen->transformation() ) { 753 switch ( qt_trans_screen->transformation() ) {
754 case QTransformedScreen::Rot90: 754 case QTransformedScreen::Rot90:
755 - brx = brushoffs.y(); 755 - brx = brushoffs.y();
756 - bry = srcwidth - brushoffs.x() - w; 756 - bry = srcwidth - brushoffs.x() - w;
757 + brx = this->brushoffs.y(); 757 + brx = this->brushoffs.y();
758 + bry = this->srcwidth - this->brushoffs.x() - w; 758 + bry = this->srcwidth - this->brushoffs.x() - w;
759 break; 759 break;
760 case QTransformedScreen::Rot180: 760 case QTransformedScreen::Rot180:
761 - brx = srcwidth - brushoffs.x() - w; 761 - brx = srcwidth - brushoffs.x() - w;
762 - bry = srcheight - brushoffs.y() - h; 762 - bry = srcheight - brushoffs.y() - h;
763 + brx = this->srcwidth - this->brushoffs.x() - w; 763 + brx = this->srcwidth - this->brushoffs.x() - w;
764 + bry = this->srcheight - this->brushoffs.y() - h; 764 + bry = this->srcheight - this->brushoffs.y() - h;
765 break; 765 break;
766 case QTransformedScreen::Rot270: 766 case QTransformedScreen::Rot270:
767 - brx = srcheight - brushoffs.y() - h; 767 - brx = srcheight - brushoffs.y() - h;
768 - bry = brushoffs.x(); 768 - bry = brushoffs.x();
769 + brx = this->srcheight - this->brushoffs.y() - h; 769 + brx = this->srcheight - this->brushoffs.y() - h;
770 + bry = this->brushoffs.x(); 770 + bry = this->brushoffs.x();
771 break; 771 break;
772 default: 772 default:
773 - brx = brushoffs.x(); 773 - brx = brushoffs.x();
774 - bry = brushoffs.y(); 774 - bry = brushoffs.y();
775 + brx = this->brushoffs.x(); 775 + brx = this->brushoffs.x();
776 + bry = this->brushoffs.y(); 776 + bry = this->brushoffs.y();
777 break; 777 break;
778 } 778 }
779- brushoffs = QPoint( brx, bry ); 779- brushoffs = QPoint( brx, bry );
780+ this->brushoffs = QPoint( brx, bry ); 780+ this->brushoffs = QPoint( brx, bry );
781 781
782- int oldsw = srcwidth; 782- int oldsw = srcwidth;
783- int oldsh = srcheight; 783- int oldsh = srcheight;
784- QSize s = qt_screen->mapToDevice( QSize(srcwidth,srcheight) ); 784- QSize s = qt_screen->mapToDevice( QSize(srcwidth,srcheight) );
785- srcwidth = s.width(); 785- srcwidth = s.width();
786- srcheight = s.height(); 786- srcheight = s.height();
787+ int oldsw = this->srcwidth; 787+ int oldsw = this->srcwidth;
788+ int oldsh = this->srcheight; 788+ int oldsh = this->srcheight;
789+ QSize s = qt_screen->mapToDevice( QSize(this->srcwidth,this->srcheight) ); 789+ QSize s = qt_screen->mapToDevice( QSize(this->srcwidth,this->srcheight) );
790+ this->srcwidth = s.width(); 790+ this->srcwidth = s.width();
791+ this->srcheight = s.height(); 791+ this->srcheight = s.height();
792 792
793 QT_TRANS_GFX_BASE<depth,type>::tiledBlt( r.x(), r.y(), r.width(), r.height() ); 793 QT_TRANS_GFX_BASE<depth,type>::tiledBlt( r.x(), r.y(), r.width(), r.height() );
794 794
795- srcwidth = oldsw; 795- srcwidth = oldsw;
796- srcheight = oldsh; 796- srcheight = oldsh;
797- brushoffs = oldBrushOffs; 797- brushoffs = oldBrushOffs;
798+ this->srcwidth = oldsw; 798+ this->srcwidth = oldsw;
799+ this->srcheight = oldsh; 799+ this->srcheight = oldsh;
800+ this->brushoffs = oldBrushOffs; 800+ this->brushoffs = oldBrushOffs;
801 inDraw = FALSE; 801 inDraw = FALSE;
802 } 802 }
803 803
804 --- qt-2.3.7/src/tools/qstring.h~qte237-all2003-07-17 03:20:26.000000000 +0200 804 --- qt-2.3.7/src/tools/qstring.h~qte237-all2003-07-17 03:20:26.000000000 +0200
805 +++ qt-2.3.7/src/tools/qstring.h2004-04-27 18:18:37.000000000 +0200 805 +++ qt-2.3.7/src/tools/qstring.h2004-04-27 18:18:37.000000000 +0200
806@@ -199,7 +199,7 @@ 806@@ -199,7 +199,7 @@
807 #endif 807 #endif
808 enum { net_ordered = 0 }; 808 enum { net_ordered = 0 };
809 #endif 809 #endif
810-} Q_PACKED; 810-} Q_PACKED;
811+}; // was: Q_PACKED; (arm-linux-)g++ 3.4 no longer allows direct access to packed structures. ML. 811+}; // was: Q_PACKED; (arm-linux-)g++ 3.4 no longer allows direct access to packed structures. ML.
812 812
813 inline QChar::QChar() 813 inline QChar::QChar()
814 { 814 {
815 --- 2.3.7/src/tools/qcstring.h~gcc34-compliance2004-04-27 20:21:48.000000000 +0200
816 +++ 2.3.7/src/tools/qcstring.h2004-04-27 20:22:52.000000000 +0200
817@@ -119,7 +119,7 @@
818 // We want to keep source compatibility for 2.x
819 // ### TODO for 4.0: completely remove these and the cstr* functions
820
821-#if !defined(QT_GENUINE_STR)
822+#if 0
823
824 #undefstrlen
825 #define strlen qstrlen