Qt 5.10 on Windows with VS 2015.
ui_*.h have empty tool tips, status tips and whats this tip for QCheckBox.
#ifndef QT_NO_TOOLTIP
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
m_checkBox
->setStatusTip
(QString());
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_WHATSTHIS
m_checkBox
->setWhatsThis
(QString());
#endif // QT_NO_WHATSTHIS
#ifndef QT_NO_TOOLTIP
m_checkBox->setToolTip(QString());
#endif // QT_NO_TOOLTIP
#ifndef QT_NO_STATUSTIP
m_checkBox->setStatusTip(QString());
#endif // QT_NO_STATUSTIP
#ifndef QT_NO_WHATSTHIS
m_checkBox->setWhatsThis(QString());
#endif // QT_NO_WHATSTHIS
To copy to clipboard, switch view to plain text mode
In UI file is :
<widget class="QCheckBox" name="m_checkBox">
<property name="toolTip">
<string extracomment="Ala ma kota"/>
</property>
<property name="statusTip">
<string extracomment="Ala ma kota"/>
</property>
<property name="whatsThis">
<string extracomment="Ala ma kota"/>
</property>
<property name="text">
<string>Bla bla bla....</string>
</property>
</widget>
<widget class="QCheckBox" name="m_checkBox">
<property name="toolTip">
<string extracomment="Ala ma kota"/>
</property>
<property name="statusTip">
<string extracomment="Ala ma kota"/>
</property>
<property name="whatsThis">
<string extracomment="Ala ma kota"/>
</property>
<property name="text">
<string>Bla bla bla....</string>
</property>
</widget>
To copy to clipboard, switch view to plain text mode
With Qt 4.8 generated ui_*.h files is OK. Whether it is a mistake or intended behavior ?
Bookmarks