summaryrefslogtreecommitdiff
path: root/pango/pango-fontmap.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-07-19 16:36:30 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-07-19 16:36:30 +0000
commitdb5e31a4949f00231978cdd721d5014c585cccf4 (patch)
treec3dae830edc7179b46b9b256dd102ec21b065555 /pango/pango-fontmap.c
parentc85f6672f3329705ed186d8eb50f71528e1d087d (diff)
downloadpango-db5e31a4949f00231978cdd721d5014c585cccf4.tar.gz
Don't try to use the ! command, not available in all systems. Move the !
2000-07-19 Tor Lillqvist <tml@iki.fi> * configure.in: Don't try to use the ! command, not available in all systems. Move the ! inside the test instead. * pango-config.in: Change order of --cflags output, so that we can build with both GLib 1.2 and 1.3 installed. * modules/devanagari/dev-ligatures.h: No C++ comments, thanks. * pango/break.c: Fix gccism, non-constant initailiser. * pango/pango-fontmap.c: Don't return value from void functions. * pango/pango-utils.c: Must have at least empty statement after a label.
Diffstat (limited to 'pango/pango-fontmap.c')
-rw-r--r--pango/pango-fontmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pango-fontmap.c b/pango/pango-fontmap.c
index 58a9eee7..96d7bd0d 100644
--- a/pango/pango-fontmap.c
+++ b/pango/pango-fontmap.c
@@ -87,7 +87,7 @@ pango_font_map_list_fonts (PangoFontMap *fontmap,
{
g_return_if_fail (fontmap != NULL);
- return PANGO_FONT_MAP_GET_CLASS (fontmap)->list_fonts (fontmap, family, descs, n_descs);
+ PANGO_FONT_MAP_GET_CLASS (fontmap)->list_fonts (fontmap, family, descs, n_descs);
}
/**
@@ -106,7 +106,7 @@ pango_font_map_list_families (PangoFontMap *fontmap,
{
g_return_if_fail (fontmap != NULL);
- return PANGO_FONT_MAP_GET_CLASS (fontmap)->list_families (fontmap, families, n_families);
+ PANGO_FONT_MAP_GET_CLASS (fontmap)->list_families (fontmap, families, n_families);
}
/**