Revision: 654
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=654&view=rev
Author: mithro
Date: 2008-07-15 21:59:12 -0700 (Tue, 15 Jul 2008)
Log Message:
-----------
Allow the optional arguments to be empty.
Modified Paths:
--------------
trunk/python-ogre/code_generators/cegui/hand_made_wrappers.py
Modified: trunk/python-ogre/code_generators/cegui/hand_made_wrappers.py
===================================================================
--- trunk/python-ogre/code_generators/cegui/hand_made_wrappers.py 2008-07-16 01:41:38 UTC (rev 653)
+++ trunk/python-ogre/code_generators/cegui/hand_made_wrappers.py 2008-07-16 04:59:12 UTC (rev 654)
@@ -400,7 +400,7 @@
"""
CEGUI::Window*
WindowManager_loadWindowLayout(::CEGUI::WindowManager & me,
- const CEGUI::String& filename, const CEGUI::String& name_prefix, const CEGUI::String& resourceGroup) {
+ const CEGUI::String& filename, const CEGUI::String& name_prefix = "", const CEGUI::String& resourceGroup = "") {
return me.loadWindowLayout( filename, name_prefix , resourceGroup);
}
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|