|
Hi Eron, I'm sure I've got the right member call based on the Qt documents: http://doc.trolltech.com/4.0/classes.html (I'm aware that not everything is a direct bind and I even tried different letter casing for the call just incase)... setColSpacing() also produced the same error for me. Since I only wanted to set the spacing for a particular column, setSpacing would not be applicable. My work around involved using QSpacerItem and an addItem to the QGridLayout to help set an absolute column width--whew! Thanks Eron! - Alfred Eron Lloyd wrote: Hmm, check you're syntax. Try setColSpacing() instead and see what you get. Be aware that this method is kind of mis-named; it sets the minimum size for a column, not the space between. For that, use setSpacing() instead. When you get AttributeError problems like that, check the Qt docs and see if you're calling the correct member.Take care, Eron On Monday 16 August 2004 9:18 pm, Alfred Young wrote: -- alfred young | x832 | tippett.com |
_______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
