]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionmodifyattributes.cpp
Partially fixed thumbnail rendering on Library Browser.
[architektonas] / src / actions / actionmodifyattributes.cpp
index e66d3d47db9fbd00e5ed37ec784c7e4f57d7cb68..f3cbd7e5e01017559e6851edfdfdaac5481ebac1 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>
 //
@@ -47,13 +49,15 @@ void ActionModifyAttributes::trigger()
        data.changeWidth = false;
        data.changeLayer = false;
 
-       if (graphic != NULL)
+       if (graphic)
+       {
                if (RS_DIALOGFACTORY->requestAttributesDialog(data,
-                           *graphic->getLayerList()))
+                   *graphic->getLayerList()))
                {
                        RS_Modification m(*container, graphicView);
                        m.changeAttributes(data);
                }
+       }
 
        finish();
        graphicView->killSelectActions();