Removed leftover debugging code from XftFontDescription delegated_gc_jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Mon, 23 Jun 2014 21:39:20 +0100
branchdelegated_gc_jv
changeset 6529 701cc8c05f3a
parent 6528 62c1dbef0b84
child 6530 b4c269c96b08
Removed leftover debugging code from XftFontDescription
XftFontDescription.st
--- a/XftFontDescription.st	Mon Jun 23 21:38:44 2014 +0100
+++ b/XftFontDescription.st	Mon Jun 23 21:39:20 2014 +0100
@@ -551,8 +551,6 @@
         clipY := clipR top.
         clipW := clipR width.
         clipH := clipR height.
-clipW > 32767 ifTrue:['clipW > 32767 ' errorPrintCR. clipW errorPrintCR. self halt. clipW := 32767].
-(clipX > 16384 or:[clipX < -16384]) ifTrue:['clipX < 16384 ' errorPrintCR. clipX errorPrintCR.].
     ].
 
     transformation := aGC transformation.
@@ -673,7 +671,6 @@
             XftTextExtents32( DISPLAY( displayId ), XFT_FONT( __INST( fontId ) ), (FcChar32*)string, len, &extents);
             break;
         }
-if (extents.width < 0) printf("width: %d  < 0\n", extents.width);
         XftDrawRect( XFT_DRAW ( __INST( sharedDrawId ) ), &color, __intVal(drawX) - extents.x, __intVal(drawY) - XFT_FONT( __INST( fontId ) )->ascent, extents.width, XFT_FONT(__INST (fontId ) )->height);
     }
     if (fgPixel != nil) {
@@ -717,7 +714,7 @@
     self primitiveFailed: error.
 
     "Created: / 21-12-2013 / 21:11:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 10-01-2014 / 11:13:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 23-06-2014 / 21:30:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !XftFontDescription methodsFor:'error reporting'!
@@ -2053,6 +2050,11 @@
 
 version_CVS
     ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.51.2.1 2014-05-08 08:27:51 stefan Exp $'
+!
+
+version_HG
+
+    ^ '$Changeset: <not expanded> $'
 ! !