Doc: Fix QDoc warnings in Core plugin classes

Task-number: QTCREATORBUG-23620
Change-Id: Idf1fb2b3f930812c3cf18b9f8ced03fb8e0947be
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Leena Miettinen
2020-03-18 13:32:02 +01:00
parent b4a9801f05
commit eecd2a5aa1
15 changed files with 260 additions and 266 deletions

View File

@@ -78,6 +78,22 @@ void MiniSplitterHandle::paintEvent(QPaintEvent *event)
painter.fillRect(event->rect(), color);
}
/*!
\class Core::MiniSplitter
\inmodule QtCreator
\brief The MiniSplitter class is a simple helper-class to obtain
\macos style 1-pixel wide splitters.
*/
/*!
\enum Core::MiniSplitter::SplitterStyle
This enum value holds the splitter style.
\value Dark Dark style.
\value Light Light style.
*/
QSplitterHandle *MiniSplitter::createHandle()
{
return new MiniSplitterHandle(orientation(), this, m_style == Light);
@@ -102,11 +118,11 @@ MiniSplitter::MiniSplitter(Qt::Orientation orientation, QWidget *parent, Splitte
}
/*!
\class NonResizingSplitter
\inmodule Qt Creator
\class Core::NonResizingSplitter
\inmodule QtCreator
The NonResizingSplitter class is a MiniSplitter that keeps its first widget's size fixed
when it is resized.
\brief The NonResizingSplitter class is a MiniSplitter that keeps its
first widget's size fixed when it is resized.
*/
/*!