Question adding tool to wxToolbar via Boa Constructor

I’ve looked over the wx documentation and the wxPython demo but I’m having trouble adding a tool to a wxToolbar via boa constructor. Adding a tool to toolbar I attempted to do this:

self.toolBar1.AddTool(10,“Test”,wxBitmap(u’C:/Python23/Lib/site-packages/wxPython/tools/boa/Examples/mdi/images/test.bmp’),“test”)

I get a message:

TypeError: Type error in argument 4 of wxToolBarBase_DoAddTool. Expected _wxBitmap_p

I take this to mean that the method is meant to take a pointer to a bitmap - suggestions???

I’m using wxPython2.4.2.4u, python 2.3 and boa constructor 0.2.3

Any help would be appreciated. Thanks in advance.

Bill