-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcairomm.patch
62 lines (53 loc) · 1.67 KB
/
cairomm.patch
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--- cairomm/cairomm/fontoptions.cc 2011-05-09 09:43:27.000000000 +0200
+++ cairomm/cairomm/fontoptions.cc 2012-12-13 11:40:09.000000000 +0100
@@ -156,11 +156,13 @@
}
#ifdef CAIRO_HAS_FT_FONT
+#if 0
void FontOptions::substitute(FcPattern* pattern)
{
cairo_ft_font_options_substitute(cobj(), pattern);
check_object_status_and_throw_exception(*this);
}
+#endif
#endif // CAIRO_HAS_FT_FONT
} //namespace Cairo
--- cairomm/cairomm/fontoptions.h 2011-05-09 09:43:27.000000000 +0200
+++ cairomm/cairomm/fontoptions.h 2012-12-13 11:32:07.000000000 +0100
@@ -143,7 +143,7 @@
*
* @since 1.8
*/
- void substitute(FcPattern* pattern);
+ //void substitute(FcPattern* pattern);
#endif // CAIRO_HAS_FT_FONT
typedef cairo_font_options_t cobject;
--- cairomm/cairomm/fontface.h 2011-05-09 09:43:27.000000000 +0200
+++ cairomm/cairomm/fontface.h 2012-12-13 11:33:31.000000000 +0100
@@ -471,11 +471,11 @@
*
* @since 1.8
*/
- static RefPtr<FtFontFace> create(FcPattern* pattern);
+ //static RefPtr<FtFontFace> create(FcPattern* pattern);
protected:
- FtFontFace(FT_Face face, int load_flags);
- FtFontFace(FcPattern* pattern);
+ //FtFontFace(FT_Face face, int load_flags);
+ //FtFontFace(FcPattern* pattern);
};
#endif // CAIRO_HAS_FT_FONT
--- cairomm/cairomm/fontface.cc 2011-05-09 09:43:27.000000000 +0200
+++ cairomm/cairomm/fontface.cc 2012-12-13 11:35:11.000000000 +0100
@@ -377,6 +377,7 @@
#ifdef CAIRO_HAS_FT_FONT
+#if 0
RefPtr<FtFontFace>
FtFontFace::create(FT_Face face, int load_flags)
{
@@ -403,6 +404,7 @@
check_status_and_throw_exception(cairo_font_face_status(m_cobject));
}
+#endif
#endif // CAIRO_HAS_FT_FONT
} //namespace Cairo