Mod doc set style de same

This commit is contained in:
Simon De Backer
2020-08-16 11:19:36 +02:00
parent 90417ae509
commit d4ee161c07
274 changed files with 6823 additions and 6756 deletions

View File

@@ -19,27 +19,27 @@
#include "diagram.h"
/**
* @brief SimpleElement::SimpleElement
* @param location
* @param qgi
* @param s
* @param state
*/
@brief SimpleElement::SimpleElement
@param location
@param qgi
@param s
@param state
*/
SimpleElement::SimpleElement(const ElementsLocation &location, QGraphicsItem *qgi, int *state) :
Element(location, qgi, state, Element::Simple)
{}
/**
* @brief SimpleElement::~SimpleElement
*/
@brief SimpleElement::~SimpleElement
*/
SimpleElement::~SimpleElement() {}
/**
* @brief SimpleElement::initLink
* @param project
* Call init Link from custom element and after
* call update label for setup it.
*/
@brief SimpleElement::initLink
@param project
Call init Link from custom element and after
call update label for setup it.
*/
void SimpleElement::initLink(QETProject *project) {
Element::initLink(project);
}