Add an underscore before the generated output names.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Kevin Ollivier 2009-07-17 18:37:02 +00:00
parent e2075bf002
commit edaadd8cd2
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class SIPBuilder:
continue
header_name = aclass.name[2:].lower()
filename = os.path.join(output_dir, header_name + ".sip")
filename = os.path.join(output_dir, "_" + header_name + ".sip")
enums_text = make_enums(aclass)
method_text = self.make_sip_methods(aclass)
base_class = get_first_value(aclass.bases)

View File

@ -18,7 +18,7 @@ class SWIGBuilder:
#print "Skipping %s" % aclass.name
continue
filename = os.path.join(output_dir, header_name + ".i")
filename = os.path.join(output_dir, "_" + header_name + ".i")
enums_text = make_enums(aclass)
method_text = self.make_swig_methods(aclass)
text = """