diff options
author | Juerg Billeter <j@bitron.ch> | 2007-07-03 21:42:08 +0000 |
---|---|---|
committer | Jürg Billeter <juergbi@src.gnome.org> | 2007-07-03 21:42:08 +0000 |
commit | af384685a2c0ae8d44af31eda1ad3bc628bb18fc (patch) | |
tree | d6b62c25b58ac76b1baaec9278d669774e82eadd /gobject/valaccodecompiler.vala | |
parent | a831e537b7394c7ac7a72559741ed4e2bc667e5b (diff) | |
download | vala-af384685a2c0ae8d44af31eda1ad3bc628bb18fc.tar.gz |
write cprefix and lower_case_cprefix of namespaces and write
2007-07-03 Juerg Billeter <j@bitron.ch>
* vala/valainterfacewriter.vala: write cprefix and lower_case_cprefix
of namespaces and write cheader_filename of interfaces
* vala/valanamespace.vala: make set_cprefix and set_lower_case_cprefix
methods public
* ccode/valaccodewriter.vala, vala/valainterfacewriter.vala,
gobject/valaccodecompiler.vala, compiler/valacompiler.vala,
vapi/glib-2.0.vala, vapigen/valagidlparser.vala,
vapigen/valavapigen.vala: split GLib.File into GLib.FileStream and
GLib.FileUtils to not conflict with GVFS
* vala/valagidlparser.vala: improve support for GVFS
* vapi/atk.vala, vapi/gdk-2.0.vala, vapi/gtk+-2.0.vala, vapi/pango.vala:
regenerated
* vapi/gio-standalone.vala, vapi/packages/gio-standalone/: add
experimental VAPI for GVFS
* vapi/Makefile.am: update
svn path=/trunk/; revision=328
Diffstat (limited to 'gobject/valaccodecompiler.vala')
-rw-r--r-- | gobject/valaccodecompiler.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gobject/valaccodecompiler.vala b/gobject/valaccodecompiler.vala index 97703e3cd..2d6b1725c 100644 --- a/gobject/valaccodecompiler.vala +++ b/gobject/valaccodecompiler.vala @@ -81,8 +81,8 @@ public class Vala.CCodeCompiler { /* remove generated C source and header files */ foreach (SourceFile file in source_files) { if (!file.pkg) { - File.unlink (file.get_csource_filename ()); - File.unlink (file.get_cheader_filename ()); + FileUtils.unlink (file.get_csource_filename ()); + FileUtils.unlink (file.get_cheader_filename ()); } } |