]> Shamusworld >> Repos - architektonas/blobdiff - src/trimaction.cpp
Added new triangulation tool, ability to snap to endpoints/intersections.
[architektonas] / src / trimaction.cpp
index 40ae9fe9b61388848f795d81e85c8053022733c4..a72594aa0762fcaaec1623862d96477cf36b0efb 100644 (file)
@@ -1,4 +1,4 @@
-// TrimAction.cpp: Action class for mirroring selected objects
+// trimaction.cpp: Action class for mirroring selected objects
 //
 // Part of the Architektonas Project
 // (C) 2011 Underground Software
@@ -87,7 +87,7 @@ TrimAction::~TrimAction()
 }
 
 
-/*virtual*/ void TrimAction::MouseDown(Vector point)
+/*virtual*/ void TrimAction::MouseDown(Vector /*point*/)
 {
 // this is not accurate enough. need to use the actual intersection point, not
 // just the parameter(s).
@@ -213,7 +213,7 @@ TrimAction::~TrimAction()
 }
 
 
-/*virtual*/ void TrimAction::KeyDown(int key)
+/*virtual*/ void TrimAction::KeyDown(int /*key*/)
 {
 #if 0
        if ((key == Qt::Key_Shift) && (state == NEXT_POINT))
@@ -237,7 +237,7 @@ TrimAction::~TrimAction()
 }
 
 
-/*virtual*/ void TrimAction::KeyReleased(int key)
+/*virtual*/ void TrimAction::KeyReleased(int /*key*/)
 {
 #if 0
        if ((key == Qt::Key_Shift) && shiftWasPressedOnNextPoint)