From 31bf98f33afabda05a01760496257691b6b7e1b7 Mon Sep 17 00:00:00 2001 From: Roger Hughston Date: Wed, 29 Jun 2005 22:13:27 +0000 Subject: [PATCH] windows does not like this.. lets try again .. gcc and cv colisions :( --- dtool/src/interrogate/interfaceMakerPythonNative.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dtool/src/interrogate/interfaceMakerPythonNative.cxx b/dtool/src/interrogate/interfaceMakerPythonNative.cxx index 3bc1832635..b11e3b8f05 100755 --- a/dtool/src/interrogate/interfaceMakerPythonNative.cxx +++ b/dtool/src/interrogate/interfaceMakerPythonNative.cxx @@ -704,7 +704,7 @@ void InterfaceMakerPythonNative::write_ClasseDetails(ostream &out, Object * obj) for (fi = obj->_constructors.begin(); fi != obj->_constructors.end(); ++fi) { Function *func = (*fi); - std::string fname = "static int Dtool_Init_"+ClassName+"(PyObject *self, PyObject *args, PyObject *kwds) "; + std::string fname = "int Dtool_Init_"+ClassName+"(PyObject *self, PyObject *args, PyObject *kwds) "; write_function_for_name(out, func,fname,"",ClassName); }