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

@@ -67,35 +67,35 @@ class XmlElementCollection : public QObject
ElementsLocation copyElement(ElementsLocation &source, ElementsLocation &destination, const QString& rename = QString());
signals:
/**
@brief elementAdded
This signal is emited when a element is added to this collection
@param collection_path, the path of element in this collection
*/
/**
@brief elementAdded
This signal is emited when a element is added to this collection
@param collection_path : the path of element in this collection
*/
void elementAdded(QString collection_path);
/**
@brief elementChanged
This signal is emited when the defintion of the element at path was changed
@param collection_path, the path of this element in this collection
*/
/**
@brief elementChanged
This signal is emited when the defintion of the element at path was changed
@param collection_path : the path of this element in this collection
*/
void elementChanged (QString collection_path);
/**
@brief elementRemoved
This signal is emited when an element is removed to this collection
@param collection_path, the path of the removed element in this collection
*/
/**
@brief elementRemoved
This signal is emited when an element is removed to this collection
@param collection_path : the path of the removed element in this collection
*/
void elementRemoved(QString collection_path);
/**
@brief directorieAdded
This signal is emited when a directorie is added to this collection
@param collection_path, the path of the new directorie
*/
/**
@brief directorieAdded
This signal is emited when a directorie is added to this collection
@param collection_path : the path of the new directorie
*/
void directorieAdded(QString collection_path);
/**
@brief directoryRemoved
This signal is emited when a directory is removed to this collection
@param collection_path, the path of the removed directory
*/
/**
@brief directoryRemoved
This signal is emited when a directory is removed to this collection
@param collection_path : the path of the removed directory
*/
void directoryRemoved(QString collection_path);
private: