Re: [PyQt] Signals, QStrings

2008-11-26 Thread Phil Thompson
On Wed, 26 Nov 2008 17:11:26 -0500, Matt Smith <[EMAIL PROTECTED]> wrote: > Here is a basic question because I am not so familiar with cpp. Whats > the difference between: > > emit(SIGNAL("mySignal( QString )"),myQstring) > emit(SIGNAL("mySignal( const QString&)"),myQstring) > > and more importa

[PyQt] Signals, QStrings

2008-11-26 Thread Matt Smith
Here is a basic question because I am not so familiar with cpp. Whats the difference between: emit(SIGNAL("mySignal( QString )"),myQstring) emit(SIGNAL("mySignal( const QString&)"),myQstring) and more importantly, which one should I use? thanks mbs _