[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    branches/work/khtml-svg (silent)
From:       Nikolas Zimmermann <wildfox () kde ! org>
Date:       2006-03-30 18:03:15
Message-ID: 1143741795.242381.11676.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 524591 by wildfox:

SVN_SILENT: fix all includes to match the khtml style


 M  +1 -1      rendering/kcanvas/device/KRenderingDevice.h  
 M  +1 -1      rendering/kcanvas/device/KRenderingFillPainter.h  
 M  +1 -1      rendering/kcanvas/device/KRenderingPaintServer.h  
 M  +1 -1      rendering/kcanvas/device/KRenderingPaintServerGradient.h  
 M  +1 -1      rendering/kcanvas/device/KRenderingPaintServerPattern.h  
 M  +1 -1      rendering/kcanvas/device/KRenderingPaintServerSolid.h  
 M  +4 -4      svg/KSVGPainterFactory.cpp  
 M  +1 -1      svg/SVGCircleElementImpl.cpp  
 M  +1 -1      svg/SVGEllipseElementImpl.cpp  
 M  +2 -2      svg/SVGGElementImpl.cpp  
 M  +1 -1      svg/SVGLineElementImpl.cpp  
 M  +1 -1      svg/SVGPathElementImpl.cpp  
 M  +1 -1      svg/SVGPolygonElementImpl.cpp  
 M  +1 -1      svg/SVGPolylineElementImpl.cpp  
 M  +1 -1      svg/SVGRectElementImpl.cpp  
 M  +2 -2      svg/SVGSVGElementImpl.cpp  
 M  +2 -2      svg/SVGSwitchElementImpl.cpp  
 M  +2 -0      svg/SVGURIReferenceImpl.h  


--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingDevice.h #524590:524591
@@ -27,8 +27,8 @@
 #include <qobject.h>
 #include <q3ptrstack.h>
 
-#include "KCanvasFilters.h"
 #include "KRenderingPaintServer.h"
+#include "rendering/kcanvas/KCanvasFilters.h"
 
 namespace khtml
 {
--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingFillPainter.h #524590:524591
@@ -23,7 +23,7 @@
 #ifndef KRenderingFillPainter_H
 #define KRenderingFillPainter_H
 
-#include "KCanvasPath.h"
+#include "rendering/kcanvas/KCanvasPath.h"
 
 class KRenderingDeviceContext;
 class KRenderingFillPainter
--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingPaintServer.h #524590:524591
@@ -23,7 +23,7 @@
 #ifndef KRenderingPaintServer_H
 #define KRenderingPaintServer_H
 
-#include "KCanvasResources.h"
+#include "rendering/kcanvas/KCanvasResources.h"
 
 namespace khtml
 {
--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingPaintServerGradient.h #524590:524591
@@ -27,7 +27,7 @@
 #include <q3ptrlist.h>
 
 #include "KRenderingPaintServer.h"
-#include "KCanvasResourceListener.h"
+#include "rendering/kcanvas/KCanvasResourceListener.h"
 
 typedef enum
 {
--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingPaintServerPattern.h #524590:524591
@@ -24,7 +24,7 @@
 #define KRenderingPaintServerPattern_H
 
 #include "KRenderingPaintServer.h"
-#include "KCanvasResourceListener.h"
+#include "kcanvas/rendering/KCanvasResourceListener.h"
 
 class KCanvasImageBuffer;
 
--- branches/work/khtml-svg/rendering/kcanvas/device/KRenderingPaintServerSolid.h #524590:524591
@@ -23,7 +23,7 @@
 #ifndef KRenderingPaintServerSolid_H
 #define KRenderingPaintServerSolid_H
 
-#include <qcolor.h>
+#include <QColor>
 
 #include "KRenderingPaintServer.h"
 
--- branches/work/khtml-svg/svg/KSVGPainterFactory.cpp #524590:524591
@@ -21,10 +21,10 @@
     Boston, MA 02111-1307, USA.
 */
 
-#include "device/KRenderingDevice.h"
-#include "device/KRenderingFillPainter.h"
-#include "device/KRenderingStrokePainter.h"
-#include "device/KRenderingPaintServerSolid.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
+#include "rendering/kcanvas/device/KRenderingFillPainter.h"
+#include "rendering/kcanvas/device/KRenderingStrokePainter.h"
+#include "rendering/kcanvas/device/KRenderingPaintServerSolid.h"
 
 #include "SVGHelper.h"
 #include "SVGElementImpl.h"
--- branches/work/khtml-svg/svg/SVGCircleElementImpl.cpp #524590:524591
@@ -26,7 +26,7 @@
 #include "SVGCircleElementImpl.h"
 #include "SVGAnimatedLengthImpl.h"
 
-#include "kcanvas/KCanvasCreator.h"
+#include "rendering/kcanvas/KCanvasCreator.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGEllipseElementImpl.cpp #524590:524591
@@ -26,7 +26,7 @@
 #include "SVGEllipseElementImpl.h"
 #include "SVGAnimatedLengthImpl.h"
 
-#include "kcanvas/KCanvasCreator.h"
+#include "rendering/kcanvas/KCanvasCreator.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGGElementImpl.cpp #524590:524591
@@ -22,8 +22,8 @@
 
 #include "misc/svgtags.h"
 
-#include "KCanvasContainer.h"
-#include "device/KRenderingDevice.h"
+#include "rendering/kcanvas/KCanvasContainer.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 #include "SVGHelper.h"
 #include "SVGGElementImpl.h"
--- branches/work/khtml-svg/svg/SVGLineElementImpl.cpp #524590:524591
@@ -26,7 +26,7 @@
 #include "SVGLineElementImpl.h"
 #include "SVGAnimatedLengthImpl.h"
 
-#include <kcanvas/KCanvasCreator.h>
+#include "rendering/kcanvas/KCanvasCreator.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGPathElementImpl.cpp #524590:524591
@@ -42,7 +42,7 @@
 #include "SVGPathSegCurvetoCubicSmoothImpl.h"
 #include "SVGPathSegCurvetoQuadraticSmoothImpl.h"
 
-#include <kcanvas/device/KRenderingDevice.h>
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGPolygonElementImpl.cpp #524590:524591
@@ -25,7 +25,7 @@
 #include "SVGPointListImpl.h"
 #include "SVGPolygonElementImpl.h"
 
-#include "kcanvas/device/KRenderingDevice.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGPolylineElementImpl.cpp #524590:524591
@@ -25,7 +25,7 @@
 #include "SVGPointListImpl.h"
 #include "SVGPolylineElementImpl.h"
 
-#include "kcanvas/device/KRenderingDevice.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGRectElementImpl.cpp #524590:524591
@@ -26,7 +26,7 @@
 #include "SVGRectElementImpl.h"
 #include "SVGAnimatedLengthImpl.h"
 
-#include <kcanvas/KCanvasCreator.h>
+#include "rendering/kcanvas/KCanvasCreator.h"
 
 using namespace KSVG;
 
--- branches/work/khtml-svg/svg/SVGSVGElementImpl.cpp #524590:524591
@@ -23,8 +23,8 @@
 #include "misc/hashes.h"
 #include "css/csshashes.h"
 
-#include "KCanvasContainer.h"
-#include "device/KRenderingDevice.h"
+#include "rendering/kcanvas/KCanvasContainer.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 #include "SVGHelper.h"
 #include "SVGRectImpl.h"
--- branches/work/khtml-svg/svg/SVGSwitchElementImpl.cpp #524590:524591
@@ -22,8 +22,8 @@
 
 #include "misc/hashes.h"
 
-#include <kcanvas/KCanvasContainer.h>
-#include <kcanvas/device/KRenderingDevice.h>
+#include "rendering/kcanvas/KCanvasContainer.h"
+#include "rendering/kcanvas/device/KRenderingDevice.h"
 
 #include "SVGHelper.h"
 #include "SVGSwitchElementImpl.h"
--- branches/work/khtml-svg/svg/SVGURIReferenceImpl.h #524590:524591
@@ -30,6 +30,8 @@
     class AttributeImpl;
 };
 
+class QString;
+
 namespace KSVG
 {
     class SVGAnimatedStringImpl;
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic