Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
None
-
6.8.0
-
DaVinci 110
Description
Reported on Teams: "the problem was that I had put some of the doc entries above qml import statements. And that apparently does not work and does not print any warnings / errors"
Bad:
/*!
\qmltype BackspaceKeyPanel
\inqmlmodule QtQuick.VirtualKeyboard.Styles
\ingroup qtvirtualkeyboard-styles-qml
\ingroup qtvirtualkeyboard-styles-keyboardstyle-split
\brief Template for the BackspaceKey.
The delegate must be based on the KeyPanel type.
For an example see \c
{src/virtualkeyboard/styles/builtin/default/BackspaceKeyPanel.qml}.
*/
import QtQuickimport
import QtQuick.VirtualKeyboardimport
import QtQuick.VirtualKeyboard.Styles
Good:
import QtQuickimport
import QtQuick.VirtualKeyboardimport
import QtQuick.VirtualKeyboard.Styles
/*!
\qmltype BackspaceKeyPanel
\inqmlmodule QtQuick.VirtualKeyboard.Styles
\ingroup qtvirtualkeyboard-styles-qml
\ingroup qtvirtualkeyboard-styles-keyboardstyle-split
\brief Template for the BackspaceKey.
The delegate must be based on the KeyPanel type.
For an example see \c
{src/virtualkeyboard/styles/builtin/default/BackspaceKeyPanel.qml}.
*/