Fix some doxygen issues

This commit is contained in:
Simon De Backer
2020-08-19 21:24:48 +02:00
parent f5725531c2
commit 666f20856e
21 changed files with 149 additions and 93 deletions

View File

@@ -38,7 +38,9 @@
/**
@brief PropertiesEditorFactory::propertiesEditor
@param model : the model to be edited
@param editor : if the properties editor to be created is the same class as @editor, the this function set @item as edited item of @editor and return editor
@param editor :
if the properties editor to be created is the same class as editor,
the this function set item as edited item of editor and return editor
@param parent : parent widget of the returned editor
@return an editor or nullptr
*/
@@ -62,11 +64,13 @@ PropertiesEditorWidget *PropertiesEditorFactory::propertiesEditor(QAbstractItemM
}
/**
* @brief propertiesEditor
* @param items : The items to be edited
* @param editor : If the properties editor to be created is the same class as @editor, then this function set @item as edited item of @editor and return editor
* @param parent : parent widget of the returned editor
* @return : an editor or nullptr;
@brief propertiesEditor
@param items : The items to be edited
@param editor :
If the properties editor to be created is the same class as editor,
then this function set item as edited item of editor and return editor
@param parent : parent widget of the returned editor
@return : an editor or nullptr;
*/
PropertiesEditorWidget *PropertiesEditorFactory::propertiesEditor(QList<QGraphicsItem *> items, PropertiesEditorWidget *editor, QWidget *parent)
{