Re: [Interest] Where do all the non-branch files live?

2012-06-18 Thread Robin Burchell
On Mon, Jun 18, 2012 at 8:11 PM, Stephen Chu wrote: > When I clone Qt 5 from gitorious, sub-modules like qtbase are not in any > branch: > > stephen-chus-mac-pro:qtbase stephenchu$ git branch > * (no branch) >   master > > Where are these non-branch files on gitorious? How do they get there? You'

Re: [Interest] JSON support in QML/ Qt C++

2012-06-15 Thread Robin Burchell
On Fri, Jun 15, 2012 at 12:55 PM, Sivan Greenberg wrote: > Does Qt5 support JSON parsing as per its standard lib? See QJsonDocument and friends in QtCore. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/int

Re: [Interest] QML Image memory use

2012-05-02 Thread Robin Burchell
On Wed, May 2, 2012 at 12:53 PM, Harri Pasanen wrote: > Does the scaling happen at display time, or at load time? You probably want to read the documentation for Image::sourceSize. Image::size is applied after the image has been loaded. ___ Interest ma

Re: [Interest] Help, please !!!

2012-04-26 Thread Robin Burchell
On Thu, Apr 26, 2012 at 10:51 PM, Andre Somers wrote: > The copy is made at the moment you _append_ the list, not at the moment > you're modifying it. actually, it's made at both points. operator[] (the non-const version) detaches (which causes a copy, if the container's data is shared). append a

Re: [Interest] Qt5 & Phonon?

2012-04-18 Thread Robin Burchell
On Wed, Apr 18, 2012 at 4:03 PM, Andreas Pakulat wrote: > As far as I can see there is no phonon shipping with Qt5, seems it was > dropped. > I guess configure was just not updated yet to reflect that. No idea > wether the phonon project already has a Qt5 port available. It still exists, it just

Re: [Interest] QtArg

2012-04-11 Thread Robin Burchell
On Wed, Apr 11, 2012 at 11:34 AM, Rui Maciel wrote: > I don't expect every project that was based on Qt to be rewritten with a > rebase on Qt 5 in mind, let alone in a 18 month time frame.  This is > simply unreasonable. huh? who said anything about rewrites? Qt 5 is Qt 4, reorganised, with a few

Re: [Interest] QTest::qWait Error

2012-03-26 Thread Robin Burchell
On Mon, Mar 26, 2012 at 2:37 PM, wrote: > I've got some test slots which should only trigger when the signal arrived. > How can I test this? I want to use them like they're normal test cases but > that they don't get called automatically. Don't put it on the test at all. Create another QObject s

Re: [Interest] how to fetch the link to one's gerrit profile?

2012-03-19 Thread Robin Burchell
On Mon, Mar 19, 2012 at 2:16 PM, Sivan Greenberg wrote: > Also, wouldn't it be wise to include those 2 as usability bugs? > https://bugreports.qt-project.org/browse/QTQAINFRA-357 talks just > about the authentication thing... one bug report per bug ;) if you consider it a bug, then sure, file it

Re: [Interest] how to fetch the link to one's gerrit profile?

2012-03-19 Thread Robin Burchell
On Mon, Mar 19, 2012 at 11:21 AM, Sivan Greenberg wrote: >>  I've been trying for a while to figure how to find one's link to the >> gerrit profile, and could not. >> >> - Is this something you can view only when logged? yes (see https://bugreports.qt-project.org/browse/QTQAINFRA-357) >> - How c

Re: [Interest] Documentation bug: QFileSystemModel

2012-02-15 Thread Robin Burchell
On Wed, Feb 15, 2012 at 1:03 PM, Atlant Schmidt wrote: >   There’s a missing term in the Qt 4.8 documentation for the > QFileSystemModel >   class. Can someone on the list who knows who the correct person is please >   forward this on to them? I’ve shown the error below. E-mail is not a good medi

Re: [Interest] QFileSystemWatcher malfunctioning

2012-01-12 Thread Robin Burchell
On Thu, Jan 12, 2012 at 2:26 PM, Sujan Dasmahapatra wrote: > QFileSystemWatcher intends to give signal if the file is modified outside of > the application right ??? Let me know if I am wrong. But I am modified the > file from within the application then why it should emit the signal. Tha

Re: [Interest] qt-labs/devscripts repository

2011-12-29 Thread Robin Burchell
On Thu, Dec 29, 2011 at 5:10 PM, Konstantin Tokarev wrote: > Hi all, > > Does anyone know where contents of devscripts[1] repository was moved? > Latest commit says that repo is dead. > > [1] http://qt.gitorious.org/qt-labs/devscripts If you look at the contents of the repo after that commit, the

Re: [Interest] Logging best practice.

2011-12-01 Thread Robin Burchell
On Thu, Dec 1, 2011 at 10:46 PM, Charley Bay wrote: > That code is not re-entrant, because the "logging object" can be intercepted > by other threads entering that function. Not if such objects are local to that thread using QThreadStorage (or you do other work to make this safe), which I'm prett