Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Thiago Macieira
On quinta-feira, 15 de agosto de 2013 04:21:47, Guido Seifert wrote: > > First of all, a screenshot of compilation errors? Yuck! Compilation errors > > are text. A text pastebin is better. > > Seems to be frowned on on SO. Never seen a pastebin there. But I am not that > long active there. Indeed

Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Constantin Makshin
The second error message says "'complex' cannot be used as a function", but the only place where the word "complex" can be seen on the screenshot is that guy's own code. This observation and the fact that with broken C++11 code Qt itself wouldn't be compilable (unless package maintainers explicitly

Re: [Interest] limitation encountered when using Repeater

2013-08-14 Thread Robert Voinea
Row positions elements horizontally. That is its function. You can't adjust x, anchor left/right items inside a Row element. Why don't you anchor your Row on left with leftMargin: 200? On Aug 15, 2013 3:28 AM, "Steve Pavao" wrote: > I've come across a limitation when using Repeater. > > If I us

Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Vadim Peretokin
No, screenshots of code are not prefered on SO and no, Ubuntu does not go out and hack things just to break them and cause misery. That's not why they're popular :) ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/list

Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Thiago Macieira
On quinta-feira, 15 de agosto de 2013 03:07:55, Guido Seifert wrote: > Here is a screenshot he provided: > https://drive.google.com/uc?id=0B41pJbehW4QbSjNsVVNvcmsyanM > > The FunctorCall/SignalArgs stuff made me assume it has something to do with > Qt and C++11. But he did not say that he tried sl

Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Thiago Macieira
On quinta-feira, 15 de agosto de 2013 02:58:06, Guido Seifert wrote: > Do you sleep never? :-) > > > We don't use delegating constructors anywhere in Qt, in any version. > > That's not what I meant. When Qt is compiled without C++11, can it be used > to develop programs, which use C++11? I know,

Re: [Interest] Compiling Programs with C++11 with Qt5, which was compiled without C++11 flag. Possible?

2013-08-14 Thread Thiago Macieira
On quinta-feira, 15 de agosto de 2013 02:40:13, Guido Seifert wrote: > Hi, could this be a problem? A guy on Stackoverflow has some strange errors > when he activates C++11 in the .pro file of his program and tries to use > the delegated constructor feature. Something about qobjectdefs_impl.h > err

[Interest] Detecting any desktop state change

2013-08-14 Thread Alexander Syvak
Hello, the requirement is to detect a desktop window visual change starting from a defined time moment. In the QPaintEvent documentationthere's no exact information when it should be sent. However, I assume that it is sent whenever a widg

Re: [Interest] Strange question on Stackoverflow.... QApplication in QThread

2013-08-14 Thread BRM
Not to mention the TV show http://www.imdb.com/title/tt0091203/?ref_=fn_al_tt_1 http://www.imdb.com/title/tt0102034/?ref_=fn_al_tt_4 http://www.imdb.com/title/tt0110027/?ref_=fn_al_tt_5 http://www.imdb.com/title/tt0103442/?ref_=fn_al_tt_2 Ben > > From: Jonath

Re: [Interest] Strange question on Stackoverflow.... QApplication in QThread

2013-08-14 Thread alexander golks
> There were at least 3 movies. freely adapted from Connor MacLeod: "There can be only Five, or so...!". [1] [1] http://de.wikipedia.org/wiki/Highlander -- /* *snd_printk(KERN_ERR "Unable to scan for card signature in video RAM\n"); * linux-2.6.19/sound/pci/nm256/nm256.c * (Note what sourc

Re: [Interest] Difference between QUrl::fromEncoded and QUrl::fromPercentEncoding ?

2013-08-14 Thread Thiago Macieira
On quarta-feira, 14 de agosto de 2013 12:53:43, Mandeep Sandhu wrote: > A Url like the one in this post is quite possible if it came as part of > another url (eg: a url encoded as a parameter). Indeed. But note what you said: it's encoded as a parameter. It's the transport. Another transport cou

Re: [Interest] Difference between QUrl::fromEncoded and QUrl::fromPercentEncoding ?

2013-08-14 Thread Mandeep Sandhu
It seems completely understandable to me. A URL is: > > URL = [scheme ":"] [authority] [path] ["?" query] ["#" fragment] > with > authority = "//" [userinfo "@"] [host] [":" port] > > (technically, a URL cannot have an empty scheme, but a "URL reference" can, > and QUrl parses like