mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-03-18 08:09:58 +01:00
Fix some doxygen issues
This commit is contained in:
@@ -26,8 +26,8 @@
|
||||
/**
|
||||
@brief ConductorPropertiesDialog::ConductorPropertiesDialog
|
||||
Constructor
|
||||
@param conductor, conductor to edit propertie
|
||||
@param parent, parent widget
|
||||
@param conductor : conductor to edit propertie
|
||||
@param parent : parent widget
|
||||
*/
|
||||
ConductorPropertiesDialog::ConductorPropertiesDialog(Conductor *conductor, QWidget *parent) :
|
||||
QDialog(parent),
|
||||
@@ -55,8 +55,8 @@ ConductorPropertiesDialog::~ConductorPropertiesDialog()
|
||||
/**
|
||||
@brief ConductorPropertiesDialog::PropertiesDialog
|
||||
Static method for open and apply properties.
|
||||
@param conductor, conductor to edit propertie
|
||||
@param parent, parent widget
|
||||
@param conductor : conductor to edit propertie
|
||||
@param parent : parent widget
|
||||
*/
|
||||
void ConductorPropertiesDialog::PropertiesDialog(Conductor *conductor, QWidget *parent)
|
||||
{
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
/**
|
||||
@brief ConductorPropertiesWidget::ConductorPropertiesWidget
|
||||
Constructor
|
||||
@param parent, paretn widget
|
||||
@param parent : paretn widget
|
||||
*/
|
||||
ConductorPropertiesWidget::ConductorPropertiesWidget(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
@@ -40,8 +40,8 @@ ConductorPropertiesWidget::ConductorPropertiesWidget(QWidget *parent) :
|
||||
/**
|
||||
@brief ConductorPropertiesWidget::ConductorPropertiesWidget
|
||||
Constructor with properties
|
||||
@param properties, properties to edit
|
||||
@param parent, parent widget
|
||||
@param properties : properties to edit
|
||||
@param parent : parent widget
|
||||
*/
|
||||
ConductorPropertiesWidget::ConductorPropertiesWidget(const ConductorProperties &properties, QWidget *parent) :
|
||||
QWidget(parent),
|
||||
|
||||
@@ -37,7 +37,6 @@ DiagramPropertiesEditorDockWidget::DiagramPropertiesEditorDockWidget(QWidget *pa
|
||||
Connect the diagram signal selectionChanged() to this slot selectionChanged();
|
||||
If diagram = nullptr, we just disconnect all signal and remove editor.
|
||||
@param diagram
|
||||
@param diagram
|
||||
*/
|
||||
void DiagramPropertiesEditorDockWidget::setDiagram(Diagram *diagram)
|
||||
{
|
||||
|
||||
@@ -487,6 +487,7 @@ QModelIndex DynamicElementTextModel::indexFromText(
|
||||
/**
|
||||
@brief DynamicElementTextModel::undoForEditedText
|
||||
@param deti
|
||||
@param parent_undo
|
||||
@return A QUndoCommand that describe all changes made for deti.
|
||||
Each change made for deti is append as a child of the returned QUndoCommand.
|
||||
In other word, if the returned QUndoCommand have no child,
|
||||
|
||||
@@ -61,10 +61,13 @@ class NewConductorPotentialSelector : public AbstractPotentialSelector
|
||||
|
||||
/**
|
||||
@brief getPotential
|
||||
Get the conductor propertie of the potential at terminal, and the number of wire in this potential.
|
||||
Get the conductor propertie of the potential at terminal,
|
||||
and the number of wire in this potential.
|
||||
@param terminal
|
||||
@param properties
|
||||
@param seq_num
|
||||
@param number
|
||||
@param properties_list
|
||||
@param c_list
|
||||
*/
|
||||
void getPotential(Terminal *terminal, autonum::sequentialNumbers &seq_num , int &number, QList<ConductorProperties> &properties_list, QList<Conductor*> &c_list)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user