From f5c39e995cf1f25239a1b33b3c61d90bd4d78196 Mon Sep 17 00:00:00 2001 From: scorpio810 Date: Wed, 18 May 2016 05:39:42 +0000 Subject: [PATCH] Add Auto Folio Numbering Label to nomenclature export git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4489 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/nomenclature.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sources/nomenclature.cpp b/sources/nomenclature.cpp index 1ed817d23..feb117f1c 100644 --- a/sources/nomenclature.cpp +++ b/sources/nomenclature.cpp @@ -84,6 +84,7 @@ QString nomenclature::getNomenclature() QString data = QObject::tr("NOMENCLATURE : ") + m_project -> title() + "\n\n"; data += QObject::tr("N° de folio") +";" ""+ QObject::tr("Titre de folio") +";" + ""+ QObject::tr("Label de folio") +";" ""+ QObject::tr("Désignation qet") +";" ""+ QObject::tr("Position") +";" ""+ QObject::tr("Label") +";" @@ -128,6 +129,7 @@ QString nomenclature::getElementInfo(const Element *elmt) { info += QString::number(diagram -> folioIndex()+1) + ";"; info += diagram -> title() + ";"; + info += diagram -> border_and_titleblock.folio() + ";"; info += elmt -> name() + ";"; info += elmt-> diagram()-> convertPosition(elmt -> scenePos()).toString() + ";"; info += elmt_info["label"].toString() + ";";