Re: [Interest] Gerrit reviewers

2013-06-05 Thread Thiago Macieira
On quarta-feira, 5 de junho de 2013 23.53.30, Samuel Gaist wrote: > On 5 juin 2013, at 23:50, Thiago Macieira wrote: > > On quarta-feira, 5 de junho de 2013 23.33.32, Samuel Gaist wrote: > >> Where should I put the explanation ? In this case, this file is not part > >> of > >> Qt 5 at all. > > > >

Re: [Interest] Gerrit reviewers

2013-06-05 Thread Thiago Macieira
On quarta-feira, 5 de junho de 2013 23.33.32, Samuel Gaist wrote: > Where should I put the explanation ? In this case, this file is not part of > Qt 5 at all. In the commit message. Just write in it that "this change does not apply to Qt 5 because so and so". -- Thiago Macieira - thiago.macieir

Re: [Interest] QDBusConnection behavior after DBus Daemon has been re-started

2013-06-05 Thread Thiago Macieira
On quarta-feira, 5 de junho de 2013 16.55.40, Miller, Doug wrote: > --sorry for the earlier mess > > Take a simple application that establishes a connection via > QDBusConnection::sessionBus(). If the DBus Daemon is shut down and Hi Doug I'm sorry, but we can stop here. There's no condition in

Re: [Interest] Gerrit reviewers

2013-06-05 Thread Thiago Macieira
On quarta-feira, 5 de junho de 2013 22.02.14, Samuel Gaist wrote: > Hi, > > I've just sent a patch to gerrit and I would like to add the relevant > reviewers as the documentation explains. > > Is there somewhere an official list of reviewers for gerrit or a mean to get > them ? Specifically for Q

Re: [Interest] Multiple rectangles or any shapes in Scene Graph plugin?

2013-06-05 Thread Josh Faust
Hi Mark, QSGNodes form a tree, so you can do something like: QSGGeometryNode *background = new QSGGeometryNode(); QSGGeometryNode *line1 = new QSGGeometryNode(); QSGGeometryNode *line2 = new QSGGeometryNode(); // ... setup background, line1 and line2 background ->appendChildNode(line1); backgro