Fix from Phil Nelson so that write-code menu item writes to the

directory the .fl file is in.


git-svn-id: file:///fltk/svn/fltk/trunk@378 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Bill Spitzak 1999-03-09 06:59:05 +00:00
parent a28b483177
commit 95e27d43f1

View File

@ -1,5 +1,5 @@
// //
// "$Id: fluid.cxx,v 1.14 1999/03/04 18:10:01 mike Exp $" // "$Id: fluid.cxx,v 1.15 1999/03/09 06:59:05 bill Exp $"
// //
// FLUID main entry for the Fast Light Tool Kit (FLTK). // FLUID main entry for the Fast Light Tool Kit (FLTK).
// //
@ -173,7 +173,9 @@ void write_cb(Fl_Widget *, void *) {
} else { } else {
strcpy(hname, header_file_name); strcpy(hname, header_file_name);
} }
if (!compile_only) goto_source_dir();
int x = write_code(cname,hname); int x = write_code(cname,hname);
if (!compile_only) leave_source_dir();
strcat(cname, "/"); strcat(cname,header_file_name); strcat(cname, "/"); strcat(cname,header_file_name);
if (compile_only) { if (compile_only) {
if (!x) {fprintf(stderr,"%s : %s\n",cname,strerror(errno)); exit(1);} if (!x) {fprintf(stderr,"%s : %s\n",cname,strerror(errno)); exit(1);}
@ -416,5 +418,5 @@ int main(int argc,char **argv) {
} }
// //
// End of "$Id: fluid.cxx,v 1.14 1999/03/04 18:10:01 mike Exp $". // End of "$Id: fluid.cxx,v 1.15 1999/03/09 06:59:05 bill Exp $".
// //