summaryrefslogtreecommitdiff
path: root/fluid/file.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2010-11-18 20:00:01 +0000
committerMatthias Melcher <fltk@matthiasm.com>2010-11-18 20:00:01 +0000
commit1e77c19688a76f96813d76b68323a6030aed8230 (patch)
treed0c9c7b2099059a5846ce49a61dec3fcb524e764 /fluid/file.cxx
parent983a0d8ce4f835c5714052171307ca29c402b015 (diff)
Fixed file access code to use UTF-8 strings (STR #2440)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7874 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/file.cxx')
-rw-r--r--fluid/file.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/file.cxx b/fluid/file.cxx
index d5168a7ee..beee3f4da 100644
--- a/fluid/file.cxx
+++ b/fluid/file.cxx
@@ -43,7 +43,7 @@ static FILE *fout;
int open_write(const char *s) {
if (!s) {fout = stdout; return 1;}
- FILE *f = fopen(s,"w");
+ FILE *f = fl_fopen(s,"w");
if (!f) return 0;
fout = f;
return 1;
@@ -135,7 +135,7 @@ static const char *fname;
int open_read(const char *s) {
lineno = 1;
if (!s) {fin = stdin; fname = "stdin"; return 1;}
- FILE *f = fopen(s,"r");
+ FILE *f = fl_fopen(s,"r");
if (!f) return 0;
fin = f;
fname = s;