Re: [Interest] CONFIG c++2a vs. QMAKE_CXXFLAGS += -std=c++2a

2020-05-06 Thread Bernhard Lindner
Ok, I see. Thanks a lot Thiago! Is this documented somewhere? > > Can somebody please explain the difference between t > > he following QMAKE > > project lines when building a GCC project: > > > > CONFIG += c++2a > > > > QMAKE_CXXFLAGS += -std=c++2a > > > > I expected both to have the same eff

Re: [Interest] Handling WM_QUIT messages when no window is shown

2020-05-06 Thread Henry Skoglund
On 2020-05-06 11:09, Julius Bullinger wrote: Usually, sending a WM_QUIT message to a QApplication triggers the QCoreApplication::aboutToQuit() signal, e.g. when ending the application via Windows's Task Manager, or using "taskkill /PID ". We discovered that no aboutToQuit() signal is emitted w

[Interest] white paper downloads

2020-05-06 Thread Christian Gagneraud
Hi there, Am i the only one to be really annoyed with having to give my details over and over? Names, Company, Role, Business email, country, phone number?!? To download a whitepaper? I'm already logged in on account.qt.io, why can't i just download the document? PS: The email verification syste

Re: [Interest] Android arm7 files over 2GB not supported?

2020-05-06 Thread Alexander Dyagilev
Created bug report here: https://bugreports.qt.io/browse/QTBUG-84033 On 5/6/2020 1:30 PM, Alexander Dyagilev wrote: _FILE_OFFSET_BITS=64 is not defined in official Qt builds for Android? https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md Is the only solution to buil

Re: [Interest] Android arm7 files over 2GB not supported?

2020-05-06 Thread Alexander Dyagilev
_FILE_OFFSET_BITS=64 is not defined in official Qt builds for Android? https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md Is the only solution to build my own Qt with this _FILE_OFFSET_BITS=64 defined? On 5/6/2020 12:53 PM, Alexander Dyagilev wrote: Hello, I'm tryi

[Interest] Android arm7 files over 2GB not supported?

2020-05-06 Thread Alexander Dyagilev
Hello, I'm trying to QFile::seek to position greater than 2GB. It retuns false with the error set to QFileDevice::PositionError. Android 10... ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

[Interest] Handling WM_QUIT messages when no window is shown

2020-05-06 Thread Julius Bullinger
Usually, sending a WM_QUIT message to a QApplication triggers the QCoreApplication::aboutToQuit() signal, e.g. when ending the application via Windows's Task Manager, or using "taskkill /PID ". We discovered that no aboutToQuit() signal is emitted when a QApplication without windows receives a