Fixed broken tool dialogs "Intersection arcs" and "Point from arc and tangent".
--HG-- branch : release
This commit is contained in:
parent
4f5526b9e5
commit
65d8772a72
ChangeLog.txt
src/libs/vtools/dialogs/tools
|
@ -1,4 +1,5 @@
|
||||||
# Version 0.4.2
|
# Version 0.4.2
|
||||||
|
- Fixed broken tool dialogs "Intersection arcs" and "Point from arc and tangent".
|
||||||
- [#442] 'Broken Formula' error when using Intersect Circles tool.
|
- [#442] 'Broken Formula' error when using Intersect Circles tool.
|
||||||
|
|
||||||
# Version 0.4.1 January 29, 2016
|
# Version 0.4.1 January 29, 2016
|
||||||
|
|
|
@ -83,7 +83,7 @@ quint32 DialogPointFromArcAndTangent::GetArcId() const
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPointFromArcAndTangent::SetArcId(const quint32 &value)
|
void DialogPointFromArcAndTangent::SetArcId(const quint32 &value)
|
||||||
{
|
{
|
||||||
setCurrentPointId(ui->comboBoxArc, value);
|
setCurrentArcId(ui->comboBoxArc, value);
|
||||||
|
|
||||||
VisToolPointFromArcAndTangent *point = qobject_cast<VisToolPointFromArcAndTangent *>(vis);
|
VisToolPointFromArcAndTangent *point = qobject_cast<VisToolPointFromArcAndTangent *>(vis);
|
||||||
SCASSERT(point != nullptr);
|
SCASSERT(point != nullptr);
|
||||||
|
|
|
@ -87,7 +87,7 @@ quint32 DialogPointOfIntersectionArcs::GetFirstArcId() const
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPointOfIntersectionArcs::SetFirstArcId(const quint32 &value)
|
void DialogPointOfIntersectionArcs::SetFirstArcId(const quint32 &value)
|
||||||
{
|
{
|
||||||
setCurrentPointId(ui->comboBoxArc1, value);
|
setCurrentArcId(ui->comboBoxArc1, value);
|
||||||
|
|
||||||
VisToolPointOfIntersectionArcs *point = qobject_cast<VisToolPointOfIntersectionArcs *>(vis);
|
VisToolPointOfIntersectionArcs *point = qobject_cast<VisToolPointOfIntersectionArcs *>(vis);
|
||||||
SCASSERT(point != nullptr);
|
SCASSERT(point != nullptr);
|
||||||
|
@ -103,7 +103,7 @@ quint32 DialogPointOfIntersectionArcs::GetSecondArcId() const
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void DialogPointOfIntersectionArcs::SetSecondArcId(const quint32 &value)
|
void DialogPointOfIntersectionArcs::SetSecondArcId(const quint32 &value)
|
||||||
{
|
{
|
||||||
setCurrentPointId(ui->comboBoxArc2, value);
|
setCurrentArcId(ui->comboBoxArc2, value);
|
||||||
|
|
||||||
VisToolPointOfIntersectionArcs *point = qobject_cast<VisToolPointOfIntersectionArcs *>(vis);
|
VisToolPointOfIntersectionArcs *point = qobject_cast<VisToolPointOfIntersectionArcs *>(vis);
|
||||||
SCASSERT(point != nullptr);
|
SCASSERT(point != nullptr);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user