[Interest] 转发: [Qt-embedded-interest] A Problem when I cross compile the qt-4.8

2012-04-08 Thread sxjyx2004
sxjyx2004 发件人: sxjyx2004 发送时间: 2012-04-09 13:00 收件人: Qt-embedded-interest 主题: [Qt-embedded-interest] A Problem when I cross compile the qt-4.8 Hi everybody, I have download the latest qt-4.8 version,and wanted to cross compile if for my ARM board, I have input following: ./configure -embedd

Re: [Interest] Video Player Example

2012-04-08 Thread Szalata, Zenon M.
Thank you for your suggestion. I will look at your code and perhaps I can use it. Zen From: Josiah Bryan [mailto:josiahbr...@gmail.com] Sent: Thursday, April 05, 2012 5:34 PM To: Szalata, Zenon M.; interest@qt-project.org Subject: Re: [Interest] Video Player Example On Thu, Apr 5, 2012 at 7:58

[Interest] using the Qt SDK - qmake and mkspecs not copied?

2012-04-08 Thread Danny Price
I'm developing with Qt on Mac and I'm using the Qt sdk which is a big improvement over the old lackluster Qt-mac installer (which didn't support multiple Qt installs and forced installs to usr/local). I cannot use the supplied Qt binaries however as they aren't built to my requirements do I did

Re: [Interest] Access QVariant's raw data

2012-04-08 Thread Jonas Gehring
On 4/8/12 3:29 PM, Thiago Macieira wrote: > On domingo, 8 de abril de 2012 13.00.28, Jonas Gehring wrote: >> Hi Thiago, >> >> On 4/8/12 5:16 AM, Thiago Macieira wrote: QVariant result = ...; // Just received from thread QMetaMethod method = ...; // Pass the result to this method

Re: [Interest] Access QVariant's raw data

2012-04-08 Thread Thiago Macieira
On domingo, 8 de abril de 2012 13.00.28, Jonas Gehring wrote: > Hi Thiago, > > On 4/8/12 5:16 AM, Thiago Macieira wrote: > >> QVariant result = ...; // Just received from thread > >> QMetaMethod method = ...; // Pass the result to this method > >> method.invoke(receiver, QGenericArgument

Re: [Interest] Access QVariant's raw data

2012-04-08 Thread Jonas Gehring
Hi Thiago, On 4/8/12 5:16 AM, Thiago Macieira wrote: >> QVariant result = ...; // Just received from thread >> QMetaMethod method = ...; // Pass the result to this method >> method.invoke(receiver, QGenericArgument(result.typeName(), >> result.value())); > > You're not supposed to use