summaryrefslogtreecommitdiff
path: root/framebuffer/font_freetype.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-17 11:26:30 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-17 11:26:30 +0000
commit66f6e9eff5c2b9f0d5c0bcffcfbc93bf2edaa7b3 (patch)
treed3d621e6074ce3e663d2d910ed5afeb9c60c2acf /framebuffer/font_freetype.c
parent603de48f10dd0580db5658484c03bd4fd6dc4690 (diff)
downloadnetsurf-66f6e9eff5c2b9f0d5c0bcffcfbc93bf2edaa7b3.tar.gz
netsurf-66f6e9eff5c2b9f0d5c0bcffcfbc93bf2edaa7b3.tar.bz2
Rename utils/resource to utils/filepath to avoid confusion with resource: fetcher.
svn path=/trunk/netsurf/; revision=12088
Diffstat (limited to 'framebuffer/font_freetype.c')
-rw-r--r--framebuffer/font_freetype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/framebuffer/font_freetype.c b/framebuffer/font_freetype.c
index c1e5fcc3a..bd17d6366 100644
--- a/framebuffer/font_freetype.c
+++ b/framebuffer/font_freetype.c
@@ -26,9 +26,9 @@
#include "css/css.h"
#include "css/utils.h"
#include "render/font.h"
+#include "utils/filepath.h"
#include "utils/utf8.h"
#include "utils/log.h"
-#include "utils/resource.h"
#include "desktop/options.h"
#include "framebuffer/gui.h"
@@ -126,7 +126,7 @@ fb_new_face(const char *option, const char *resname, const char *fontname)
if (option != NULL) {
newf->fontfile = strdup(option);
} else {
- resource_sfind(respaths, buf, fontname);
+ filepath_sfind(respaths, buf, fontname);
newf->fontfile = strdup(buf);
}