Author: rmottola
Date: Mon Oct  5 21:54:13 2015
New Revision: 39034

URL: http://svn.gna.org/viewcvs/gnustep?rev=39034&view=rev
Log:
create mutable path

Modified:
    devmodules/dev-libs/mica/Headers/CoreGraphics/CGPath.h
    devmodules/dev-libs/mica/Sources/CGPath.m

Modified: devmodules/dev-libs/mica/Headers/CoreGraphics/CGPath.h
URL: 
http://svn.gna.org/viewcvs/gnustep/devmodules/dev-libs/mica/Headers/CoreGraphics/CGPath.h?rev=39034&r1=39033&r2=39034&view=diff
==============================================================================
--- devmodules/dev-libs/mica/Headers/CoreGraphics/CGPath.h      (original)
+++ devmodules/dev-libs/mica/Headers/CoreGraphics/CGPath.h      Mon Oct  5 
21:54:13 2015
@@ -78,7 +78,10 @@
 };
 typedef enum CGLineJoin CGLineJoin;
 
+
 /* creation and management */
+
+CGMutablePathRef CGPathCreateMutable ( void ); 
 
 void CGPathRelease
 (

Modified: devmodules/dev-libs/mica/Sources/CGPath.m
URL: 
http://svn.gna.org/viewcvs/gnustep/devmodules/dev-libs/mica/Sources/CGPath.m?rev=39034&r1=39033&r2=39034&view=diff
==============================================================================
--- devmodules/dev-libs/mica/Sources/CGPath.m   (original)
+++ devmodules/dev-libs/mica/Sources/CGPath.m   Mon Oct  5 21:54:13 2015
@@ -32,6 +32,14 @@
 @interface CGPath : NSBezierPath
 @end
 
+
+CGMutablePathRef CGPathCreateMutable ( void )
+{
+  NSBezierPath *p;
+
+  p = [[NSBezierPath alloc] init];
+  return (CGMutablePathRef)p;
+}
 
 void CGPathRelease
 (


_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to