What is the proper way to specify method arguments in _ui.h files so pyuic
can extract it?

example _ui.h method:

void DialogCalc::add(int,int,int) //is this what should be done or is it
even possible to specify parameters there?
{
.....
}

when I tried this pyuic discards it and it never ends up in the .py file

when I have a method with one argument such as:

void DialogCalc::print(int)
{
...
}

it appears this way in the .py file

def print(self, a0): #a0 is the int passed in
.....



Thanks

Douglas K. Miller


_______________________________________________
PyKDE mailing list    [EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde

Reply via email to