[qet] [2084] Removing the posibility to call html editor on the text conductor |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2084
Author: scorpio810
Date: 2013-04-02 01:40:03 +0200 (Tue, 02 Apr 2013)
Log Message:
-----------
Removing the posibility to call html editor on the text conductor
Modified Paths:
--------------
trunk/sources/diagramview.cpp
Modified: trunk/sources/diagramview.cpp
===================================================================
--- trunk/sources/diagramview.cpp 2013-04-01 20:15:53 UTC (rev 2083)
+++ trunk/sources/diagramview.cpp 2013-04-01 23:40:03 UTC (rev 2084)
@@ -1144,9 +1144,7 @@
// Get text to edit
QList<DiagramTextItem *> texts_to_edit;
foreach (QGraphicsItem *item, scene -> selectedItems()) {
- if (ConductorTextItem *cti = qgraphicsitem_cast<ConductorTextItem *>(item)) {
- texts_to_edit << cti;
- } else if (IndependentTextItem *iti = qgraphicsitem_cast<IndependentTextItem *>(item)) {
+ if (IndependentTextItem *iti = qgraphicsitem_cast<IndependentTextItem *>(item)) {
texts_to_edit << iti;
} else if (ElementTextItem *eti = qgraphicsitem_cast<ElementTextItem *>(item)) {
// here...