Re: [PyQt] setCornerWidget for QMenuBar

2011-12-06 Thread Phil Thompson
On Tue, 06 Dec 2011 19:54:20 +0200, ad...@mbnoimi.net wrote: > On 06/12/2011 07:54 م, Phil Thompson wrote: > It's fixed in the current snapshot. > > Thx Phil > > Do I need to build the snapshot or it's available as Windows binary > somewhere? Snapshots are only provided as source packages.

Re: [PyQt] setCornerWidget for QMenuBar

2011-12-06 Thread admin
On 06/12/2011 07:54 م, Phil Thompson wrote: It's fixed in the current snapshot. Thx Phil Do I need to build the snapshot or it's available as Windows binary somewhere? -- Best Regards Muhammad Bashir Al-Noimi My Blog: http://mbnoimi.net

Re: [PyQt] QtDBus: Calling a method with an Array of Strings signature with Python 3

2011-12-06 Thread Phil Thompson
On Tue, 06 Dec 2011 17:43:36 +, Chris Mayo wrote: > On 05/12/11 21:31, Phil Thompson wrote: >> On Mon, 05 Dec 2011 19:12:33 +, Chris Mayo >> wrote: Try this... arg = QDBusArgument() arg.beginArray(QMetaType.QString) arg.add("") arg.endArray()

Re: [PyQt] setCornerWidget for QMenuBar

2011-12-06 Thread Phil Thompson
On Tue, 06 Dec 2011 19:36:25 +0200, ad...@mbnoimi.net wrote: > Hi PyQt Gurus, > > I tried to use setCornerWidget in QMenuBar but I got a compiler error as > mentioned below: > > Does QMenuBar supports Corner Widget? > > ---log--- > > AttributeError "QMenuBar" object no attribute "setCornerWi

Re: [PyQt] QtDBus: Calling a method with an Array of Strings signature with Python 3

2011-12-06 Thread Chris Mayo
On 05/12/11 21:31, Phil Thompson wrote: On Mon, 05 Dec 2011 19:12:33 +, Chris Mayo wrote: Try this... arg = QDBusArgument() arg.beginArray(QMetaType.QString) arg.add("") arg.endArray() and pass arg to call(). Doesn't seem to work: device_iface = QtDBus.QDBusInterface('org.freedes

[PyQt] setCornerWidget for QMenuBar

2011-12-06 Thread admin
Hi PyQt Gurus, I tried to use setCornerWidget in QMenuBar but I got a compiler error as mentioned below: Does QMenuBar supports Corner Widget? ---log--- AttributeError "QMenuBar" object no attribute "setCornerWidget" -