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

@@ -38,8 +38,8 @@ diagramselection::~diagramselection() {
}
/**
* @brief load all Diagrams of project in table
*/
@brief load all Diagrams of project in table
*/
void diagramselection::load_TableDiagram() {
// Clear all items
ui -> tableDiagram -> clear();
@@ -80,9 +80,9 @@ void diagramselection::load_TableDiagram() {
}
/**
* @brief get list of Diagrams is selected
* @return this list of Diagrams
*/
@brief get list of Diagrams is selected
@return this list of Diagrams
*/
QList<Diagram *> diagramselection::list_of_DiagramSelected() {
QList<Diagram *> listDiag;
for(int i=0; i<ui -> tableDiagram -> rowCount();i++){
@@ -94,9 +94,9 @@ QList<Diagram *> diagramselection::list_of_DiagramSelected() {
}
/**
* @brief contextMenuRequested
* @param pos
*/
@brief contextMenuRequested
@param pos
*/
void diagramselection::on_tableDiagram_customContextMenuRequested(const QPoint &pos){
QMenu menu(this);
QAction *desl = menu.addAction( tr("Désélectionner tout") );