diff --git a/sources/NameList/nameslist.cpp b/sources/NameList/nameslist.cpp index 36c2bc7f1..44b783fa0 100644 --- a/sources/NameList/nameslist.cpp +++ b/sources/NameList/nameslist.cpp @@ -27,13 +27,6 @@ int NamesList::MetaTypeId = qRegisterMetaType("NamesList"); NamesList::NamesList() { } -/** - Constructeur de copie - @param other La NamesList a copier -*/ -NamesList::NamesList(const NamesList &other) : hash_names(other.hash_names) { -} - /** Destructeur */ diff --git a/sources/NameList/nameslist.h b/sources/NameList/nameslist.h index 440f1b2ab..dbf8c17c6 100644 --- a/sources/NameList/nameslist.h +++ b/sources/NameList/nameslist.h @@ -31,7 +31,6 @@ class NamesList { // constructors, destructor public: NamesList(); - NamesList(const NamesList &); virtual ~NamesList(); // attributes diff --git a/sources/diagramcontent.cpp b/sources/diagramcontent.cpp index d34ec2234..e8ef15158 100644 --- a/sources/diagramcontent.cpp +++ b/sources/diagramcontent.cpp @@ -116,26 +116,6 @@ DiagramContent::DiagramContent(Diagram *diagram, bool selected) : } } -/** - * @brief DiagramContent::DiagramContent - * Copy constructor - * @param other - */ -DiagramContent::DiagramContent(const DiagramContent &other) : - m_elements(other.m_elements), - m_text_fields(other.m_text_fields), - m_images(other.m_images), - m_shapes(other.m_shapes), - m_conductors_to_update(other.m_conductors_to_update), - m_conductors_to_move(other.m_conductors_to_move), - m_other_conductors(other.m_other_conductors), - m_potential_conductors(other.m_potential_conductors), - m_element_texts(other.m_element_texts), - m_texts_groups(other.m_texts_groups), - m_selected_items(other.m_selected_items), - m_tables(other.m_tables) -{} - DiagramContent::~DiagramContent() {} diff --git a/sources/diagramcontent.h b/sources/diagramcontent.h index beda6ea06..d5ad3a458 100644 --- a/sources/diagramcontent.h +++ b/sources/diagramcontent.h @@ -47,7 +47,6 @@ class DiagramContent public: DiagramContent(); DiagramContent(Diagram *diagram, bool selected = true); - DiagramContent(const DiagramContent &); ~DiagramContent(); /// Used to filter the different items carried by this container. diff --git a/sources/titleblock/templatecellsset.cpp b/sources/titleblock/templatecellsset.cpp index b2043acc4..bc6e28715 100644 --- a/sources/titleblock/templatecellsset.cpp +++ b/sources/titleblock/templatecellsset.cpp @@ -29,16 +29,6 @@ TitleBlockTemplateCellsSet::TitleBlockTemplateCellsSet(const TitleBlockTemplateV { } -/** - Copy constructor - @param copy TitleBlockTemplateCellsSet object to copy -*/ -TitleBlockTemplateCellsSet::TitleBlockTemplateCellsSet(const TitleBlockTemplateCellsSet ©) : - QList(copy), - parent_view_(copy.parent_view_) -{ -} - /** Destructor */ diff --git a/sources/titleblock/templatecellsset.h b/sources/titleblock/templatecellsset.h index 3d83ebd87..ae32e5e4a 100644 --- a/sources/titleblock/templatecellsset.h +++ b/sources/titleblock/templatecellsset.h @@ -29,7 +29,6 @@ class TitleBlockTemplateCellsSet : public QList // Constructors, destructor public: TitleBlockTemplateCellsSet(const TitleBlockTemplateView *); - TitleBlockTemplateCellsSet(const TitleBlockTemplateCellsSet &); virtual ~TitleBlockTemplateCellsSet(); // methods