]> Shamusworld >> Repos - architektonas/blobdiff - src/actions/actionlayersadd.cpp
Partially fixed thumbnail rendering on Library Browser.
[architektonas] / src / actions / actionlayersadd.cpp
index 670731d1b0a734b07ec5da684ba465ca4d0d74a1..44575e36596f645540068a174b89d70093180245 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>
 //
@@ -30,11 +32,11 @@ void ActionLayersAdd::trigger()
 {
        RS_DEBUG->print("add layer");
 
-       if (RS_DIALOGFACTORY != NULL && graphic)
+       if (RS_DIALOGFACTORY && graphic)
        {
                RS_Layer * layer = RS_DIALOGFACTORY->requestNewLayerDialog(graphic->getLayerList());
 
-               if (layer != NULL)
+               if (layer)
                        graphic->addLayer(layer);
        }