summaryrefslogtreecommitdiffstats
path: root/line.cpp
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-05-17 19:19:38 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-05-17 19:19:38 +0200
commit2778d2d6c0821a7a1622ca4312416739525781be (patch)
tree8589cab180728a024b8bd29a01fd9a5e85e9bce4 /line.cpp
parent31eb4d5361026dad3107dc647ac7c3ff63f50c7b (diff)
downloadGUI_SS2015-2778d2d6c0821a7a1622ca4312416739525781be.tar.gz
GUI_SS2015-2778d2d6c0821a7a1622ca4312416739525781be.zip
Add different shapes for drawing
Diffstat (limited to 'line.cpp')
-rw-r--r--line.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/line.cpp b/line.cpp
index aa29d43..d569c0c 100644
--- a/line.cpp
+++ b/line.cpp
@@ -6,12 +6,6 @@ Line::Line()
m_selected = true;
}
-Line::Line(const Line &other)
- :QLine(other)
-{
- m_selected = other.m_selected;
-}
-
bool Line::isHit(const QPoint &clickPoint)
{
QVector3D a(p2() - p1());