summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/wxgtk24/files/patch-src_generic_dcpsg.cpp
blob: 2de14ab2429522dd971cbdfbed34ae7207a2305b (plain) (blame)
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
--- src/generic/dcpsg.cpp.orig  Fri Sep 29 19:57:20 2006
+++ src/generic/dcpsg.cpp   Fri Sep 29 19:58:00 2006
@@ -1146,7 +1146,7 @@
   FILE *file;
 };
 
-static int paps_move_to( FT_Vector* to,
+static int paps_move_to( const FT_Vector* to,
             void *user_data)
 {
   OutlineInfo *outline_info = (OutlineInfo*)user_data;
@@ -1156,7 +1156,7 @@
   return 0;
 }
 
-static int paps_line_to( FT_Vector*  to,
+static int paps_line_to( const FT_Vector*  to,
             void *user_data)
 {
   OutlineInfo *outline_info = (OutlineInfo*)user_data;
@@ -1166,8 +1166,8 @@
   return 0;
 }
 
-static int paps_conic_to( FT_Vector*  control,
-             FT_Vector*  to,
+static int paps_conic_to( const FT_Vector*  control,
+             const FT_Vector*  to,
              void *user_data)
 {
   OutlineInfo *outline_info = (OutlineInfo*)user_data;
@@ -1179,9 +1179,9 @@
   return 0;
 }
 
-static int paps_cubic_to( FT_Vector*  control1,
-             FT_Vector*  control2,
-             FT_Vector*  to,
+static int paps_cubic_to( const FT_Vector*  control1,
+             const FT_Vector*  control2,
+             const FT_Vector*  to,
              void *user_data)
 {
   OutlineInfo *outline_info = (OutlineInfo*)user_data;