mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 22:00:35 +01:00
Fix some doxygen issues
This commit is contained in:
@@ -18,8 +18,12 @@
|
||||
#include "editorcommands.h"
|
||||
|
||||
/**
|
||||
Constructs an ElementEditionCommand, thus embedding the provided \a scene and \a view.
|
||||
@param parent Parent command
|
||||
@brief ElementEditionCommand::ElementEditionCommand
|
||||
Constructs an ElementEditionCommand,
|
||||
thus embedding the provided \a scene and \a view.
|
||||
@param scene
|
||||
@param view
|
||||
@param parent : Parent command
|
||||
*/
|
||||
ElementEditionCommand::ElementEditionCommand(ElementScene *scene, ElementView *view, QUndoCommand *parent):
|
||||
QUndoCommand(parent),
|
||||
@@ -29,9 +33,13 @@ ElementEditionCommand::ElementEditionCommand(ElementScene *scene, ElementView *v
|
||||
}
|
||||
|
||||
/**
|
||||
Constructs an ElementEditionCommand, thus embedding the provided \a scene and \a view.
|
||||
@param text Text describing the effect of the command
|
||||
@param parent Parent command
|
||||
@brief ElementEditionCommand::ElementEditionCommand
|
||||
Constructs an ElementEditionCommand,
|
||||
thus embedding the provided \a scene and \a view.
|
||||
@param text : Text describing the effect of the command
|
||||
@param scene
|
||||
@param view
|
||||
@param parent : Parent command
|
||||
*/
|
||||
ElementEditionCommand::ElementEditionCommand(const QString &text, ElementScene *scene, ElementView *view, QUndoCommand *parent):
|
||||
QUndoCommand(text, parent),
|
||||
@@ -529,10 +537,11 @@ void ScalePartsCommand::adjustText() {
|
||||
/**
|
||||
@brief ChangePropertiesCommand::ChangePropertiesCommand
|
||||
Change the properties of the drawed element
|
||||
@param scene: scene to belong the property
|
||||
@param type: new type of element.
|
||||
@param context: new info about type.
|
||||
@param parent: parent undo
|
||||
@param scene : scene to belong the property
|
||||
@param type : new type of element.
|
||||
@param info
|
||||
@param elmt_info : new info about type.
|
||||
@param parent : parent undo
|
||||
*/
|
||||
ChangePropertiesCommand::ChangePropertiesCommand(ElementScene *scene, const QString& type, const DiagramContext& info, const DiagramContext& elmt_info, QUndoCommand *parent) :
|
||||
ElementEditionCommand(scene, nullptr, parent)
|
||||
|
||||
Reference in New Issue
Block a user