Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread Harri Porten
On Thu, 23 Feb 2017, Tom Isaacson wrote: It worked for me; I was able to run our VS2015 app in VS2017 with no problems. I think Thiago meant something different: what if you are compiling your application with VS 2017 against a set of Qt libraries build with VS 2015? If that works

[Interest] Correct 5.8 static, debug config options for iphonesimulator?

2017-02-23 Thread Patrick Stinson
Configuring Qt-5.8 with the following command line: ./configure -sdk iphonesimulator produces the following error: ERROR: The OpenGL functionality tests failed! You might need to modify the include and library search paths by editing QMAKE_INCDIR_OPENGL[_ES2], QMAKE_LIBDIR_OPENGL[_ES2] and

Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread Tom Isaacson
It worked for me; I was able to run our VS2015 app in VS2017 with no problems. Tom Isaacson -Original Message- From: Interest [mailto:interest-bounces+tom.isaacson=navico@qt-project.org] On Behalf Of Thiago Macieira Sent: Friday, 24 February 2017 06:04 To: interest@qt-project.org

Re: [Interest] Missing modules when building Qt-5.8 with -sdk iphonesimulator

2017-02-23 Thread Thiago Macieira
On quinta-feira, 23 de fevereiro de 2017 08:48:26 PST Patrick Stinson wrote: > I am building qt with the following options, and it is not building > QtBluetooth. Is this intentional? My configure line: > > ./configure -static -debug -xplatform macx-ios-clang -sdk iphonesimulator > -nomake

Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread Thiago Macieira
On quinta-feira, 23 de fevereiro de 2017 02:08:12 PST Jean-Michaël Celerier wrote: > Some MS guys said on reddit that VS2017 has ABI compatibility with VS2015, > so maybe it'll just work ? Remains to be proven, but we'd like to know from experience by our users: what happens if you just take

[Interest] Missing modules when building Qt-5.8 with -sdk iphonesimulator

2017-02-23 Thread Patrick Stinson
I am building qt with the following options, and it is not building QtBluetooth. Is this intentional? My configure line: ./configure -static -debug -xplatform macx-ios-clang -sdk iphonesimulator -nomake examples -nomake tests -developer-build -opensource -confirm-license Maybe the problem is

Re: [Interest] 5.8.0 Segfault on setPersistentCookiesPolicy

2017-02-23 Thread Viktor Engelmann
Probably it's related to this? https://bugreports.qt.io/browse/QTBUG-58650 Am 23.02.2017 um 13:27 schrieb Viktor Engelmann: > C++ port of the code works in 5.8.1 > > > Am 01.02.2017 um 10:52 schrieb Alexandru Croitor: >> Hi. >> >> I would suggest running the python application under a debugger,

Re: [Interest] BLE manufacturer data on Android

2017-02-23 Thread Christian Kandeler
On 02/23/2017 01:30 PM, dusek.mar...@email.cz wrote: > I'd like to read manufacturer specific data from advertising packet (or get > access to whole advertising packet, so the manufacturer specific data can be > extracted on application layer). Currently, I need this on Android. Is this >

Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread Konstantin Tokarev
23.02.2017, 10:00, "Google Ersatz" : > Good morning. > > I have already successfully compiled Qt 5.8 and Qt 5.9 Pre-Alpha with Visual > Studio 2017 RC. The only Problem is QtWebEngine - Chromium does not Supported > VS2017 at all. > > And according to Joerg

[Interest] BLE manufacturer data on Android

2017-02-23 Thread dusek.martin
Hi, I'd like to read manufacturer specific data from advertising packet (or get access to whole advertising packet, so the manufacturer specific data can be extracted on application layer). Currently, I need this on Android. Is this possible? If not, can you give a little help how to

Re: [Interest] 5.8.0 Segfault on setPersistentCookiesPolicy

2017-02-23 Thread Viktor Engelmann
C++ port of the code works in 5.8.1 Am 01.02.2017 um 10:52 schrieb Alexandru Croitor: > Hi. > > I would suggest running the python application under a debugger, and try to > get a backtrace. > That might give insight whether it is a Pythong binding issue of a Qt issue. > > An alternative would

Re: [Interest] Send POST request with QOAuth2AuthorizationCodeFlow

2017-02-23 Thread Jesus Fernandez
On Wednesday, February 22, 2017 10:43:23 PM Juhani Matilainen wrote: > But it seems refreshAccessToken -request doesn’t contains client_id and > client_secret parameters that are required to refreshing an access token (at > least with Google login) … and setModifyParametersFunction is available

Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread Jean-Michaël Celerier
Some MS guys said on reddit that VS2017 has ABI compatibility with VS2015, so maybe it'll just work ? Best, Jean-Michaël On Thu, Feb 23, 2017 at 10:28 AM, NoRulez wrote: > Thank you very much for the clarification > > > Am 23.02.2017 um 08:52 schrieb Thiago Macieira < >

Re: [Interest] Support for Visual Studio 2017

2017-02-23 Thread NoRulez
Thank you very much for the clarification > Am 23.02.2017 um 08:52 schrieb Thiago Macieira : > >> On quarta-feira, 22 de fevereiro de 2017 22:38:09 PST NoRulez wrote: >> Hello, >> >> since visual studio 2017 will be released on march 7th, which Qt version >> will

Re: [Interest] Creating a QVariant of QList<QObject*> knowing only the class name

2017-02-23 Thread Robert Buchinger
On Donnerstag, 23. Februar 2017 09:03:03 CET Thiago Macieira wrote: > On quarta-feira, 22 de fevereiro de 2017 23:58:29 PST Thiago Macieira wrote: > > int x = abs(getValue1()), > > > > y = abs(getValue2()); > > > > if (x * y < x) > > > >

Re: [Interest] Creating a QVariant of QList<QObject*> knowing only the class name

2017-02-23 Thread Thiago Macieira
On quarta-feira, 22 de fevereiro de 2017 23:58:29 PST Thiago Macieira wrote: > int x = abs(getValue1()), > y = abs(getValue2()); > if (x * y < x) > throw overflowError(); > > According to the standard, the exception above can never be thrown. No,

Re: [Interest] Creating a QVariant of QList<QObject*> knowing only the class name

2017-02-23 Thread Thiago Macieira
On quarta-feira, 22 de fevereiro de 2017 15:37:16 PST Ch'Gans wrote: > OK, I take it as "Undefined Behaviour", since you mentioned this above. > As my code works, i'll keep it for now (not mission-critical) That's what everyone who was affected by the compiler optimising away UB said, then they

Re: [Interest] Creating a QVariant of QList<QObject*> knowing only the class name

2017-02-23 Thread Thiago Macieira
On quarta-feira, 22 de fevereiro de 2017 15:26:09 PST Ch'Gans wrote: > On 23 February 2017 at 05:42, Thiago Macieira wrote: > > On quarta-feira, 22 de fevereiro de 2017 02:40:37 PST Ch'Gans wrote: > [...] > > >> Tanks for all your inputs, but I'm still puzzled, I