]> Shamusworld >> Repos - architektonas/blobdiff - src/base/rs_eventhandler.cpp
Fixed Library Browser...
[architektonas] / src / base / rs_eventhandler.cpp
index 3484ca9f159b11e83d4dee41b4a81219706c2c3b..fa89eff725573f007b96697744b18476d1bd1d75 100644 (file)
@@ -3,7 +3,9 @@
 // Part of the Architektonas Project
 // Originally part of QCad Community Edition by Andrew Mustun
 // Extensively rewritten and refactored by James L. Hammons
-// (C) 2010 Underground Software
+// Portions copyright (C) 2001-2003 RibbonSoft
+// Copyright (C) 2010 Underground Software
+// See the README and GPLv2 files for licensing and warranty information
 //
 // JLH = James L. Hammons <jlhamm@acm.org>
 //
@@ -101,7 +103,7 @@ void RS_EventHandler::mousePressEvent(QMouseEvent * e)
        }
        else
        {
-               if (defaultAction != NULL)
+               if (defaultAction)
                {
                        defaultAction->mousePressEvent(e);
                        e->accept();
@@ -665,6 +667,7 @@ void RS_EventHandler::setSnapMode(RS2::SnapMode sm)
                defaultAction->setSnapMode(sm);
 #else
 #warning "!!! Not sure if this is going to work correctly..."
+//seems to
        graphicView->snapper.setSnapMode(sm);
 #endif
 }
@@ -683,6 +686,7 @@ void RS_EventHandler::setSnapRestriction(RS2::SnapRestriction sr)
                defaultAction->setSnapRestriction(sr);
 #else
 #warning "!!! Not sure if this is going to work correctly..."
+//seems to
        graphicView->snapper.setSnapRestriction(sr);
 #endif
 }