Re: [Development] Contribute to the Qt

2015-07-24 Thread Peter Kuemmel
Or do you want to help improve the C++11 support in Qt? Is there a TODO list about possible improvements? And what's the policy about C++14? Isn't C++14 mostly a patch/cleanup of C++11? Or... Thanks, Marc -- Marc Mutz marc.m...@kdab.com | Senior Software Engineer KDAB

Re: [Development] Binary incompatible Qt 5 version

2015-07-24 Thread Peter Kuemmel
Von: Thiago Macieira thiago.macie...@intel.com Mixing different Qt versions in the same process is not supported. I must point out that none of the backtraces in either link show this. You can't use plugins compiled with an older Qt version. https://bugs.kde.org/show_bug.cgi?id=349371 I

[Development] Binary incompatible Qt 5 version

2015-07-21 Thread Peter Kuemmel
Is it obvious that the Qt 5.4.1 version installed by the system on a KDE machine is binary incompatible to a locally compiled Qt 5.5.0? That they are binary incompatible is shown by sporadic QtCreator crashes: https://bugs.kde.org/show_bug.cgi?id=347524

Re: [Development] New Module for Serial Buses

2015-05-31 Thread Peter Kuemmel
QAbstactSocket is listed in the Wiki as a design mistake. Don't repeat it, please. Also using Qt's event system for such low-level byte swinging is a bad choice: https://codereview.qt-project.org/#/c/75708/ Peter ___ Development mailing list

Re: [Development] HEADS-UP: Qt 5.4.2 release coming

2015-04-23 Thread Peter Kuemmel
Hi Peter, Thanks! Why an incomplete copy/paste? I see it's missing the changes to tools/qtconfig/mainwindow.cpp, did you omit other changes as well? Because the gerrit code is Qt5 not Qt4. So it needs a complete review and test by you if it works on Mac, I don't have a Mac. Peter

Re: [Development] HEADS-UP: Qt 5.4.2 release coming

2015-04-23 Thread Peter Kuemmel
René, maybe this helps you a bit: https://codereview.qt-project.org/#/c/111056/ It's only a incomplete copy and paste of your Qt 4 patch, but it could show you the direction. Peter ___ Development mailing list Development@qt-project.org

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-13 Thread Peter Kuemmel
So, what should it *actually* be? Is it a bug that it is one value instead of the other? Where is it set to what it is set to? I've uploaded a patch for further discussion: https://codereview.qt-project.org/#change,78038 Thanks, -- Stephen Kelly stephen.ke...@kdab.com | Software

[Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
I build 5.2.1 for a embedded system and the generated Qt5GuiConfigExtras.cmake fails to find GLES2/gl2.h. The reason is that the including dir GLES2 is used twice in the find command, GLES2/gl2.h is searched for in /usr/include/GLES2, but there is no /usr/include/GLES2/GLES2/gl2.h:

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
set(_GL_INCDIRS /usr/include/GLES2) Where does this come from? Generated by Qt5GuiConfigExtras.cmake.in set(_GL_INCDIRS $$CMAKE_GL_INCDIRS) find_path(_qt5gui_OPENGL_INCLUDE_DIR $$CMAKE_GL_HEADER_NAME PATHS ${_GL_INCDIRS} !!IF !mac NO_DEFAULT_PATH !!ENDIF ) gui.pro defines

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
and QMAKE_INCDIR_OPENGL_ES2 is set by configure to QMAKE_INCDIR_OPENGL_ES2 = .../sysroot/usr/include/GLES2 Is this correct? Yes, in this directory is gl2.h. Thanks, -- Stephen Kelly stephen.ke...@kdab.com | Software Engineer KDAB (Deutschland) GmbH Co.KG, a KDAB Group Company

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
Gesendet: Mittwoch, 12. Februar 2014 um 14:14 Uhr Von: Stephen Kelly stephen.ke...@kdab.com An: development@qt-project.org Betreff: Re: [Development] GL headers in Qt5GuiConfigExtras.cmake On Wednesday, February 12, 2014 14:00:11 Peter Kuemmel wrote: and QMAKE_INCDIR_OPENGL_ES2 is set

Re: [Development] Qt 5.2.1 Release Candidate available

2014-02-01 Thread Peter Kuemmel
Which changes will be part of 5.2.1? Only blockers or also some bug fixes currently in stable? Gesendet: Freitag, 31. Januar 2014 um 09:20 Uhr Von: Heikkinen Jani jani.heikki...@digia.com An: Thiago Macieira thiago.macie...@intel.com, development@qt-project.org development@qt-project.org

Re: [Development] Visual C++ 2013 binaries

2013-10-19 Thread Peter Kuemmel
MSVC 2013 now supports ISO C11 language features (also breaks Qt4 ATM). Gesendet:Samstag, 19. Oktober 2013 um 14:54 Uhr Von:Nagy-Egri Mt Ferenc nagyma...@freemail.hu An:development@qt-project.org development@qt-project.org Betreff:Re: [Development] Visual C++ 2013 binaries I have tried to

Re: [Development] Fwd: [graphics] SG13 Chicago Meeting Minutes

2013-09-29 Thread Peter Kuemmel
Von: Thiago Macieira thiago.macie...@intel.com Betreff: [Development] Fwd: [graphics] SG13 Chicago Meeting Minutes If someone is more interested in Herb Sutter's vision of C++, its standardization, and what SG13 is, see his talk here:

Re: [Development] fixing name of QNetworkAccessManager::createRequest

2012-01-15 Thread Peter Kuemmel
Off topic: There would still be silent errors for people who have reimplemented the createRequest method (it's virtual). Technically interesting here is the question how such a situation cloud be managed? Using C++11 'final' would prevent the reimplementation. But using pre C++11, the

Re: [Development] fixing name of QNetworkAccessManager::createRequest

2012-01-12 Thread Peter Kuemmel
Well, having method createX which creates Y doesn't sound good to me either. Yes, this is worse than a binary-only bug. I don't know the policy for API changes for Qt 5.0, but when such a thing couldn't be fixed, nothing else is worth braking source code compatibility. I would fix it