Qt 5.10 on Windows with VS 2015.
ui_*.h have empty tool tips, status tips and whats this tip for QCheckBox.
Qt Code:
  1. #ifndef QT_NO_TOOLTIP
  2. m_checkBox->setToolTip(QString());
  3. #endif // QT_NO_TOOLTIP
  4. #ifndef QT_NO_STATUSTIP
  5. m_checkBox->setStatusTip(QString());
  6. #endif // QT_NO_STATUSTIP
  7. #ifndef QT_NO_WHATSTHIS
  8. m_checkBox->setWhatsThis(QString());
  9. #endif // QT_NO_WHATSTHIS
To copy to clipboard, switch view to plain text mode 
In UI file is :
Qt Code:
  1. <widget class="QCheckBox" name="m_checkBox">
  2. <property name="toolTip">
  3. <string extracomment="Ala ma kota"/>
  4. </property>
  5. <property name="statusTip">
  6. <string extracomment="Ala ma kota"/>
  7. </property>
  8. <property name="whatsThis">
  9. <string extracomment="Ala ma kota"/>
  10. </property>
  11. <property name="text">
  12. <string>Bla bla bla....</string>
  13. </property>
  14. </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 ?