> Von: Interest Im Auftrag von Nicholas Yue
> Gesendet: Donnerstag, 28. Mai 2020 06:40
> An: interest@qt-project.org
> Betreff: [Interest] Building Qt 5.15 on Ubuntu 20.04
>
> Hi,
>
> Is there a way to specify a different python for the build of Qt 5.15?
>
> On Ubuntu 20.04, there is either pyth
Hi, I would have a question about remote object slot call with return
value: If a slot id called from client with a return value, it is
asynchronized on client side (push), but what happens on host side ? 1)
network iodevice receive the request 2) slot is called, in which thread
? network iodev
Hi,
Just install package python-is-python2 or python-is-python3.
Regards,
Tom
čt 28. 5. 2020 v 6:43 odesílatel Nicholas Yue
napsal:
> Hi,
>
> Is there a way to specify a different python for the build of Qt 5.15?
>
> On Ubuntu 20.04, there is either python2 or python3 but during the build
Hi Brett,
Thanks for those details, it will help me to start the tests in the
right direction.
One of those new possibilities ties in here.
If you use repc to create the base class (Source or SimpleSource), it
will have the Q_CLASSINFO() added to the class by repc.
So
Hi,
Is there a way to specify a different python for the build of Qt 5.15?
On Ubuntu 20.04, there is either python2 or python3 but during the build
of QML, the build script is looking for python
For now I am creating a symlink but was wondering if there is a better
way.
Cheers
--
Nichola
if so, please vote for this bug:
https://bugreports.qt.io/browse/QTCREATORBUG-24093
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest
Hi,
I have the following situation in the code:
m_propertiesDock = new QDockWidget(this);
addDockWidget(Qt::RightDockWidgetArea, m_propertiesDock);
auto* sa = new QScrollArea(m_propertiesDock);
stackedWidget = new QStackedWidget(sa);
sa->setWidget(stackedWidget);
sa->setWidgetResizable(true);
m