Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
> > > What's the version of your clang? I am using MacPorts Clang 3.1 and never > have this error. > > In fact, I just rebuilt Qt 5 from latest git and other than qbasicatomic.h > (which should be fixed with clang 3.2) and qmacstyle_mac.mm (CGFloat size > is different in 32-bit), I don't have any e

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread Shaw Andy
> On 10 September 2012 12:58, Shaw Andy wrote: > > > To clarify, I did the patch that everyone is referring to, I actually did > > it in my > Nokia days when I had access to the tablet and passed it on to someone after > I joined Digia. It is a hack because I had to try and get around the mous

Re: [Development] make confclean

2012-09-10 Thread Laszlo Papp
On Mon, Sep 10, 2012 at 10:12 PM, Sylvain Pointeau < sylvain.point...@gmail.com> wrote: > and the equivalent for "make clean"? >>> >> > my mistake, it is the same. > When you do not have git available, you can also run "make distclean". Laszlo ___ Deve

[Development] can I put a QWindow in a QWidget? or vice-versa?

2012-09-10 Thread Alan Ezust
I am porting a Qt4 app that has a QMainWindow and a bunch of widgets in a layout, one of them being a QDeclarativeView. I thought I'd try putting a QQuickView in its place but I am wondering what to pass to its constructor arguments, (it can't have a widget as a parent)... or how to add it to a QL

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 23.56.24, Sylvain Pointeau wrote: > and now this error: > > In file included from ../../3rdparty/assimp/code/Importer.cpp:46: > In file included from ../../3rdparty/assimp/code/AssimpPCH.h:106: > /usr/bin/../lib/c++/v1/list:212:9: error: field has incomplet

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Stephen Chu
On 9/10/12 4:21 PM, Sylvain Pointeau wrote: > and now I have this error: > > In file included from kernel/qvariant.cpp:64: > In file included from > ../../include/QtCore/5.0.0/QtCore/private/qvariant_p.h:1: > ../../include/QtCore/5.0.0/QtCore/private/../../../../../src/corelib/kernel/qvariant_p.h:2

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
and now this error: In file included from ../../3rdparty/assimp/code/Importer.cpp:46: In file included from ../../3rdparty/assimp/code/AssimpPCH.h:106: /usr/bin/../lib/c++/v1/list:212:9: error: field has incomplete type 'Assimp::LWS::Element' _Tp __value_; ^ /usr/bin/../lib/c++/v1/type

Re: [Development] make confclean

2012-09-10 Thread Sylvain Pointeau
> > and the equivalent for "make clean"? >> > my mistake, it is the same. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] make confclean

2012-09-10 Thread Sylvain Pointeau
> > git clean -xfd > it works! and the equivalent for "make clean"? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
then I do # define Q_DECL_FINAL # define Q_DECL_OVERRIDE will see if that works ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 22.21.16, Sylvain Pointeau wrote: > error: > base 'SelfTestFinal1' is marked 'final' > struct Derived : public T, public FallbackMixin {}; // <- ... > ^ That's in a section marked: // C++98 version (doesn't work

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
and now I have this error: In file included from kernel/qvariant.cpp:64: In file included from ../../include/QtCore/5.0.0/QtCore/private/qvariant_p.h:1: ../../include/QtCore/5.0.0/QtCore/private/../../../../../src/corelib/kernel/qvariant_p.h:248:33: error: base 'SelfTestFinal1' is marked 'fi

Re: [Development] make confclean

2012-09-10 Thread Oswald Buddenhagen
On Mon, Sep 10, 2012 at 09:34:23PM +0200, ext Sylvain Pointeau wrote: > > > > git clean -d -f > > > > $ git clean -d -f > Removing .DS_Store > Removing .qmake.super > > it doesn't remove the makefile, is it normal? git clean -xfd ___ Development maili

Re: [Development] make confclean

2012-09-10 Thread Sylvain Pointeau
this one might be better? git clean -n -d -x ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] make confclean

2012-09-10 Thread Sylvain Pointeau
> > git clean -d -f > $ git clean -d -f Removing .DS_Store Removing .qmake.super it doesn't remove the makefile, is it normal? ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

[Development] required QTextBoundaryFinder behavior [and API] fixes

2012-09-10 Thread Konstantin Ritt
Hi folks, In fact, the current QTBF behaves just like if it were a broken break iterator... I mean that, [Issue1] despite it's name, it stops at every break opportunity and reports NotAtBoundary via boundaryReasons() method for the break opportunities that are not boundaries (this affects Line and

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread Ariel Molina
> I grabbed the Intuos 3, it's still around. And I can reproduce the > bug that with Qt 4.x apps (even the latest Creator released) it's not > usually possible to interact with most QWidgets using the Wacom mouse. Are you able to reproduce the bug i originally found? 1. Unplug your wacom 2. Grab

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread Shawn Rutledge
On 10 September 2012 12:58, Shaw Andy wrote: > To clarify, I did the patch that everyone is referring to, I actually did it > in my Nokia days when I had access to the tablet and passed it on to someone > after I joined Digia. It is a hack because I had to try and get around the > mouse posit

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread André Somers
Op 10-9-2012 15:45, Boudewijn Rempt schreef: > I mean, there clearly are more important users of Wacom support in Qt than me > with Krita. Don't underestimate yourself ;-) André ___ Development mailing list Development@qt-project.org http://lists.qt-pro

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Olivier Goffart
On Monday 10 September 2012 10:49:41 Sylvain Pointeau wrote: > > > I had a similar issue with ICC 13.0, but since the ICC documentation > > > says > > > that its constexpr support is only partial, I attributed it to a > > > compiler > > > bug. > > > > > > Try turning off constexpr support. > > Ex

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread Boudewijn Rempt
On Monday 10 September 2012 Sep, Shaw Andy wrote: > > On domingo, 9 de setembro de 2012 13.25.29, Boudewijn Rempt wrote: > > > The solution for a bug can never be to wilfully break existing > > > applications! > > > What can I as an application developer depend on if that's deemed > > > acceptable

Re: [Development] Removing Wacom support in Qt5

2012-09-10 Thread Shaw Andy
> On domingo, 9 de setembro de 2012 13.25.29, Boudewijn Rempt wrote: > > The solution for a bug can never be to wilfully break existing applications! > > What can I as an application developer depend on if that's deemed > > acceptable? "Yeah, we had a feature, and yeah, people depend on it, but > w

Re: [Development] Qt 5 Beta - qtwebkit build error

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 11.04.29, Dietrich.Gossen@conti- engineering.com wrote: > Can't locate version.pm in @INC Please install Perl::version. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center Intel Sweden AB - Re

Re: [Development] Qt 5 Beta - undefined reference to QWidget

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 10.55.21, Fabian.Gruber@conti- engineering.com wrote: > Hi, > > I'm testing Qt 5 Beta with a simple Qt Widget Project on Linux. > Mainly it's the one you get when creating a new project without any forms. > In the .pro file I added widgets, qml and quick to

[Development] Qt 5 Beta - qtwebkit build error

2012-09-10 Thread Dietrich . Gossen
Hi, I am trying to build the new Qt 5 beta 1 on Fedora 16. My problem is that qtwebkit is throwing following error: make[1]: Entering directory `/home/local/CW01/uidu5861/qt/qt-everywhere-opensource-src-5.0.0-beta1' test -d qtwebkit || mkdir qtwebkit &&cd qtwebkit && export "WEBKITOUTPUTDIR=/ho

[Development] Qt 5 Beta - undefined reference to QWidget

2012-09-10 Thread Fabian . Gruber
Hi, I'm testing Qt 5 Beta with a simple Qt Widget Project on Linux. Mainly it's the one you get when creating a new project without any forms. In the .pro file I added widgets, qml and quick to the QT-variable. When compiling the project I get the following errors: moc_mainwindow.o:(.data.rel.ro

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
> > > I had a similar issue with ICC 13.0, but since the ICC documentation says > > that its constexpr support is only partial, I attributed it to a compiler > > bug. > > > > Try turning off constexpr support. > Excellent, I will try this evening. ___ De

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 10.07.17, Thiago Macieira wrote: > On segunda-feira, 10 de setembro de 2012 09.57.37, Sylvain Pointeau wrote: > > In file included from animation/qabstractanimation.cpp:1434: > > .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization > >

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Thiago Macieira
On segunda-feira, 10 de setembro de 2012 09.57.37, Sylvain Pointeau wrote: > In file included from animation/qabstractanimation.cpp:1434: > .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization > of non-aggregate type 'QBasicAtomicInt' > (aka 'QBasicAtomicInteger') with a

Re: [Development] Qt 4.8 clang and libc++

2012-09-10 Thread Sylvain Pointeau
In file included from animation/qabstractanimation.cpp:1434: .moc/release-shared/moc_qabstractanimation.cpp:37:1: error: initialization of non-aggregate type 'QBasicAtomicInt' (aka 'QBasicAtomicInteger') with an initializer list QT_MOC_LITERAL(4, 42, 25), Is it linked to the clang/libc++ iss

Re: [Development] Qt5 Beta1 packages for Ubuntu

2012-09-10 Thread Stephan Binner
Zoltán Balogh wrote:   > Today I published all modules from the Qt5 Beta1 for packaged Precise  > and Quantal : https://launchpad.net/~canonical-qt5-edgers/+archive/qt5-daily   Please add a link to http://qt-project.org/wiki/Qt-5-unofficial-builds   Bye,    Stephan