Hello,
Inspired from the recent discussions on QThread, I have the following
question.
I have:
class MyThread : public QThread
{
Q_OBJECT
//the constructor and other stuff
signals:
void mySignal();
protected:
virtual void run()
{
while(true)
{
//do something
On sexta-feira, 26 de fevereiro de 2016 15:32:30 PST Roland Winklmeier wrote:
> Hi,
>
> 2016-02-26 14:51 GMT+01:00 Philippe :
> > When building Qt 5.6 on Windows, there is a new DLL called Qt5DBus.dll
> > which did not exist in past Qt 5.x versions I have built on my machine.
> >
> > Is it a new
On quinta-feira, 25 de fevereiro de 2016 07:55:54 PST André Somers wrote:
> Op 24/02/2016 om 18:23 schreef Thiago Macieira:
> Would it be possible to circumvent this issue by moving the thread
> object onto its own thread too?
>
> Foo() : QObject(nullptr) {
>moveToThread(&m_thread);
>
> I have to write some native implementation functions (ObjC) for my Qt/QML
> app. I'm wondering about having to include/link sqlite library. I'm not
> really a iOS guy, just a Qt guy having to hack some native functionality.
> Do I have to link another sqlite3? Can I just run the one that Qt us
I have to write some native implementation functions (ObjC) for my Qt/QML app.
I'm wondering about having to include/link sqlite library. I'm not really a iOS
guy, just a Qt guy having to hack some native functionality.
Do I have to link another sqlite3? Can I just run the one that Qt uses?
___
Well the only way is to just hack at it. The stuff I wanted was on page 7, but
it doesn't allude to that on page 6.
Anyway, I'm not sure why we have to use gradle as my Android stuff works and I
still seem to be using Ant?
> Sent: Thursday, February 25, 2016 at 9:09 AM
> From: "rpzrpz...@gmail
Hi,
2016-02-26 14:51 GMT+01:00 Philippe :
> When building Qt 5.6 on Windows, there is a new DLL called Qt5DBus.dll
> which did not exist in past Qt 5.x versions I have built on my machine.
>
> Is it a new capability introduced by 5.6 (not mentionned in
> https://wiki.qt.io/New_Features_in_Qt_5.6
When building Qt 5.6 on Windows, there is a new DLL called Qt5DBus.dll
which did not exist in past Qt 5.x versions I have built on my machine.
Is it a new capability introduced by 5.6 (not mentionned in
https://wiki.qt.io/New_Features_in_Qt_5.6
)
Philippe