Re: [Development] QNX/Blackberry Support (Qt and Qt Creator)

2012-02-27 Thread a.gra...@gmail.com
Hi, On 28 February 2012 02:18, Nicolas Arnaud-Cormos wrote: > Hi all, > > You may have seen some activity around the QNX support in Qt lately, with > reviews for a QPA plugin in Qt 4.8, a QPA plugin in Qt 5 and also a Qt Creator > plugin to allow cross-compilation, debugging and deployement on bl

[Development] QNX/Blackberry Support (Qt and Qt Creator)

2012-02-27 Thread Nicolas Arnaud-Cormos
Hi all, You may have seen some activity around the QNX support in Qt lately, with reviews for a QPA plugin in Qt 4.8, a QPA plugin in Qt 5 and also a Qt Creator plugin to allow cross-compilation, debugging and deployement on blackberry devices. As there were understandable fears about the main

Re: [Development] QTBUG-23737: Move QtQuick 1 to its own module

2012-02-27 Thread matthew.vogt
Lars wrote: > This is mostly done. What remains is the renaming of the classes from > QDeclarative to QQuick/QQml. This is ok for me to go into api_changes (you > might need to create that branch in qtdeclarative) with the compat hacks we > have (in moc and qtdeclarative). > > Please add Jira task

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread Thiago Macieira
On terça-feira, 28 de fevereiro de 2012 01.02.25, lata agrawal wrote: > Hi Thiago, Hello. Please don't do top-posting to mailing lists. > Thanks for replying. After reading on net, I found that "even if child > process finishes and parent process is not waiting for the child process to > finish,

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread lata agrawal
Hi Thiago, Thanks for replying. After reading on net, I found that "even if child process finishes and parent process is not waiting for the child process to finish, then parent process will not receive a finished signal. rather in this case, child process will become a zombie". I checked that aft

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread 1+1=2
Hi, please use return a.exec(); instead of return 0; Debao 2012/2/27 lata agrawal : > Hi, > > I am running console application C1 in QProcess. I am starting this console > application C1 from another console application C2. Problem is: > > I am only getting finished signal from C1 when I use

Re: [Development] No Finished signal from QProcess!

2012-02-27 Thread Thiago Macieira
On segunda-feira, 27 de fevereiro de 2012 14.39.12, lata agrawal wrote: > I fail to understand what is going on wrong here. Someone please help. I can't understand your code either. Please post a minimal and compileable test case so we can verify whether this is a bug in QProcess. In particular,

Re: [Development] Nominating Pekka Vuorela for approver

2012-02-27 Thread lars.knoll
15 days have passed, so Pekka is now officially an Approver. Congratulations Pekka! Cheers, Lars From: "ext joona.t.petr...@nokia.com" mailto:joona.t.petr...@nokia.com>> Date: Thu, 2 Feb 2012 09:30:21 + To: mailto:development@qt-project.org>> Subject: [Deve

[Development] No Finished signal from QProcess!

2012-02-27 Thread lata agrawal
Hi, I am running console application C1 in QProcess. I am starting this console application C1 from another console application C2. Problem is: I am only getting finished signal from C1 when I use waitforfinshed() else I am not getting finished signal from C1. Here is the code: Q