summaryrefslogtreecommitdiff
path: root/modules/basic/basic-win32.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2004-09-25 20:14:16 +0000
committerTor Lillqvist <tml@src.gnome.org>2004-09-25 20:14:16 +0000
commit28e4c860f283c5165a550bc6d72cbdebc4a4b420 (patch)
tree8a6aa5bc41597f1ccd6d398eda5aba5289bcae4d /modules/basic/basic-win32.c
parent7e563ccb3be25b173d3b3a3e45d3d081a97f96d5 (diff)
downloadpango-28e4c860f283c5165a550bc6d72cbdebc4a4b420.tar.gz
Add the new pango_renderer_* symbols.
2004-09-25 Tor Lillqvist <tml@iki.fi> * pango/pango.def: Add the new pango_renderer_* symbols. * modules/basic/basic-win32.c (basic_engine_covers, basic_engine_win32_class_init): Remove the implementation of the covers method. It was wrong anyway, and unnecessary. No need to override the default implementation. (#152997)
Diffstat (limited to 'modules/basic/basic-win32.c')
-rw-r--r--modules/basic/basic-win32.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/basic/basic-win32.c b/modules/basic/basic-win32.c
index 2863cbb4..4b173f0d 100644
--- a/modules/basic/basic-win32.c
+++ b/modules/basic/basic-win32.c
@@ -1110,20 +1110,9 @@ init_uniscribe (void)
#endif
}
-static PangoCoverageLevel
-basic_engine_covers (PangoEngineShape *engine,
- PangoFont *font,
- PangoLanguage *lang,
- gunichar wc)
-{
- return PANGO_COVERAGE_EXACT;
- return find_char (font, wc) ? PANGO_COVERAGE_EXACT : PANGO_COVERAGE_NONE;
-}
-
static void
basic_engine_win32_class_init (PangoEngineShapeClass *class)
{
- class->covers = basic_engine_covers;
class->script_shape = basic_engine_shape;
}