Re: [Development] Qt Platform Extras

2013-03-03 Thread Samuel Rødal
On 03/01/2013 11:22 AM, Friedemann Kleint wrote: > Hi, > > >I suppose it would not be a detriment. Where do you draw the line? > Which platforms, what functions and types? Here are some candidate types > for constructors and conversion operators... > > The thing to keep in mind is basically that

Re: [Development] Evolving Qt's multithreading API

2013-03-03 Thread d3fault
On Sun, Mar 3, 2013 at 10:15 AM, Sze Howe Koh wrote: > On 27 February 2013 15:38, Laszlo Papp wrote: >> >> On Wed, Feb 27, 2013 at 1:13 AM, Joseph Crowell >> wrote: >>> >>> I have threads that live for the full life of my application but telling >>> them to stop on application shut down is pain

Re: [Development] QJsonDocument formatting

2013-03-03 Thread Matt Broadstone
On Sun, Mar 3, 2013 at 4:26 PM, Thiago Macieira wrote: > On domingo, 3 de março de 2013 16.19.17, Matt Broadstone wrote: > > I'd like to propose a new method added to the QJsonDocument class: > >QJsonDocument::toFormattedJson(int indent, bool compact) > > Too late. It's already there. > >

Re: [Development] QJsonDocument formatting

2013-03-03 Thread Thiago Macieira
On domingo, 3 de março de 2013 16.19.17, Matt Broadstone wrote: > I'd like to propose a new method added to the QJsonDocument class: >QJsonDocument::toFormattedJson(int indent, bool compact) Too late. It's already there. enum JsonFormat { Indented, Compact }; QByt

[Development] QJsonDocument formatting

2013-03-03 Thread Matt Broadstone
Hello, I'd like to propose a new method added to the QJsonDocument class: QJsonDocument::toFormattedJson(int indent, bool compact) QJsonPrivate::Writer currently supports these features but unfortunately there is no way to get to it from the public API. Ideally, these options would be available

Re: [Development] issue tracker rights

2013-03-03 Thread Thorbjørn Martsum
>I'm very much in favour of opening this up. I think the Qt Project can only win with a more liberal policy here. I am glad to hear, and I have impatiently since waited for something to happen, since I would really like to have access to re-open and close bugs. I think it is annoying that I have t

Re: [Development] Qt Creator Debug - GDB error

2013-03-03 Thread André Pönitz
On Sat, Mar 02, 2013 at 01:20:09AM +1100, Majid Khan wrote: > Thanks, > > > ptrace: Operation not permitted. > > > Could not attach to the process. Make sure no other debugger traces this > process. > > Check the settings of > > /proc/sys/kernel/yama/ptrace_scope > > For more details, see /e

Re: [Development] Evolving Qt's multithreading API

2013-03-03 Thread Sze Howe Koh
On 27 February 2013 15:38, Laszlo Papp wrote: > > On Wed, Feb 27, 2013 at 1:13 AM, Joseph Crowell > wrote: >> >> I have threads that live for the full life of my application but telling >> them to stop on application shut down is painful. > > > What a coincidence. I have just had the same scenar