Re: [Interest] [Development] qDebug()

2018-03-25 Thread Timur Pocheptsov
Have you tried creating an empty qtlogging.ini (as suggested on stackowerflow)? Best regards, Timur. From: Development on behalf of Igor Mironchik Sent: Monday, March

Re: [Interest] [Development] qDebug()

2018-03-25 Thread Igor Mironchik
Hi, Didn't try yet these solution, just more investigations... With Qt 5.11 beta installed with online installer qDebug() works in GUI mode, but with Qt 5.11 built from repository qDebug() doesn't work in GUI mode. On 26.03.2018 07:50, Alexander Akulich wrote: Hello Igor, Does the linked

Re: [Interest] [Development] qDebug()

2018-03-25 Thread Igor Mironchik
On 26.03.2018 07:50, Alexander Akulich wrote: Hello Igor, Does the linked solution help? See also comment #2 at https://bugs.launchpad.net/ubuntu/+source/qtbase-opensource-src/+bug/1731646 (referenced in the

Re: [Interest] [Development] qDebug()

2018-03-25 Thread Igor Mironchik
Simple: #include #include #include #include #include class Obj     :    public QWidget {     Q_OBJECT public:     Obj()     {}     ~Obj()     {} public slots:     void start()     {         show();         QTextStream st( stdout );         st << "QTextStream works...";         qDebug()

Re: [Interest] [Development] qDebug()

2018-03-25 Thread Igor Mironchik
On 26.03.2018 08:50, Timur Pocheptsov wrote: Have you tried creating an empty qtlogging.ini (as suggested on stackowerflow)? Sure. Best regards,     Timur. *From:* Development

Re: [Interest] QCameraInfo & Qt 5.10.1

2018-03-25 Thread Igor Mironchik
Hi, I figured out what was changed. First of all QCamera::start() now just move camera to Loaded status (at least on Linux with GStreamer), not Active, so I had to listen camera status change and do additional steps in Loaded status. And second, if camera is in active status