[qet] [4603] Autonumbering Context does not reset when typing in title field

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


Revision: 4603
Author:   dfochi
Date:     2016-08-04 14:52:17 +0200 (Thu, 04 Aug 2016)
Log Message:
-----------
Autonumbering Context does not reset when typing in title field

Modified Paths:
--------------
    trunk/sources/projectconfigpages.cpp
    trunk/sources/ui/selectautonumw.cpp

Modified: trunk/sources/projectconfigpages.cpp
===================================================================
--- trunk/sources/projectconfigpages.cpp	2016-08-04 12:29:35 UTC (rev 4602)
+++ trunk/sources/projectconfigpages.cpp	2016-08-04 12:52:17 UTC (rev 4603)
@@ -424,21 +424,18 @@
 
 	//Conductor Tab
 	connect (m_context_cb_conductor, SIGNAL (currentTextChanged(QString)),  m_saw_conductor, SLOT (applyEnableOnContextChanged(QString)));
-	connect (m_context_cb_conductor, SIGNAL (currentTextChanged(QString)),  this, SLOT (updateContext_conductor(QString)));
 	connect (m_context_cb_conductor, SIGNAL (currentIndexChanged(QString)), this, SLOT (updateContext_conductor(QString)));
 	connect (m_saw_conductor,        SIGNAL (applyPressed()),               this, SLOT (saveContext_conductor()));
 	connect (m_remove_pb_conductor,  SIGNAL (clicked()),                    this, SLOT (removeContext_conductor()));
 
 	//Element Tab
 	connect (m_context_cb_element, SIGNAL (currentTextChanged(QString)),  m_saw_element, SLOT(applyEnableOnContextChanged(QString)));
-	connect (m_context_cb_element, SIGNAL (currentTextChanged(QString)),  this, SLOT (updateContext_element(QString)));
 	connect (m_context_cb_element, SIGNAL (currentIndexChanged(QString)), this, SLOT (updateContext_element(QString)));
 	connect (m_saw_element,        SIGNAL (applyPressed()),               this, SLOT (saveContext_element()));
 	connect (m_remove_pb_element,  SIGNAL (clicked()),                    this, SLOT (removeContext_element()));
 
 	//Folio Tab
 	connect (m_context_cb_folio, SIGNAL (currentTextChanged(QString)),  m_saw_folio, SLOT(applyEnableOnContextChanged(QString)));
-	connect (m_context_cb_folio, SIGNAL (currentTextChanged(QString)),  this, SLOT (updateContext_folio(QString)));
 	connect (m_context_cb_folio, SIGNAL (currentIndexChanged(QString)), this, SLOT (updateContext_folio(QString)));
 	connect (m_saw_folio,        SIGNAL (applyPressed()),               this, SLOT (saveContext_folio()));
 	connect (m_remove_pb_folio,  SIGNAL (clicked()),                    this, SLOT (removeContext_folio()));

Modified: trunk/sources/ui/selectautonumw.cpp
===================================================================
--- trunk/sources/ui/selectautonumw.cpp	2016-08-04 12:29:35 UTC (rev 4602)
+++ trunk/sources/ui/selectautonumw.cpp	2016-08-04 12:52:17 UTC (rev 4603)
@@ -35,7 +35,6 @@
 	ui->setupUi(this);
 	if (this->parentWidget() -> objectName()=="ElementTab"){
 		m_eaw = new ElementAutonumberingW();
-		connect(m_eaw,SIGNAL(textChanged(QString)),this,SLOT(formula_textChanged(QString)));
 		ui->scrollAreaWidgetContents->layout()->addWidget(m_eaw);
 	}
 	setContext(NumerotationContext());
@@ -47,7 +46,6 @@
 {
 	if (this->parentWidget() -> objectName()=="ElementTab"){
 		m_eaw = new ElementAutonumberingW();
-		connect(m_eaw,SIGNAL(textChanged(QString)),this,SLOT(formula_textChanged(QString)));
 		ui->scrollAreaWidgetContents->layout()->addWidget(m_eaw);
 	}
 	ui->setupUi(this);


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/