Re: Supressing argument renaming in the Qt Designer -> pyuic workflow

2005-08-12 Thread Phil Thompson
On Thursday 11 August 2005 6:36 pm, Madhusudan Singh wrote: > Hi > > Some of the functions I defined inside Qt Designer need to have some values > passed to them. > > For instance : > > Code : > > void Form3::runningplot(n,plottitle,xname,x,y1name,y1,y2name,y2) > > is translated by pyuic to > > Pyt

Supressing argument renaming in the Qt Designer -> pyuic workflow

2005-08-11 Thread Madhusudan Singh
Hi Some of the functions I defined inside Qt Designer need to have some values passed to them. For instance : Code : void Form3::runningplot(n,plottitle,xname,x,y1name,y1,y2name,y2) is translated by pyuic to Python code : def runningplot(self,a0,a1,a2,a3,a4,a5,a6,a7): Now, while I understa