]> Shamusworld >> Repos - architektonas/blobdiff - src/forms/layerdialog.cpp
Initial removal of unnecessary rs_ prefixes from files.
[architektonas] / src / forms / layerdialog.cpp
index 798791021e4978327ac52618549673a7120ea7df..aa8d73576e63ac0d73bbec65e8e56f65d8ab4572 100644 (file)
@@ -1,8 +1,11 @@
 // layerdialog.cpp
 //
+// 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>
 //
@@ -13,8 +16,8 @@
 
 #include "layerdialog.h"
 
-#include "rs_layer.h"
-#include "rs_layerlist.h"
+#include "layer.h"
+#include "layerlist.h"
 
 LayerDialog::LayerDialog(QWidget * parent/*= NULL*/, Qt::WindowFlags flags/*= 0*/):
        QDialog(parent, flags), layer(NULL), layerList(NULL), layerName(""), editLayer(false)
@@ -65,11 +68,11 @@ std::cout << ui.wPen->getPen();
 
 void LayerDialog::validate()
 {
-       if (layerList != NULL && (editLayer == FALSE || layerName != ui.leName->text()))
+       if (layerList && (!editLayer || layerName != ui.leName->text()))
        {
                RS_Layer * l = layerList->find(ui.leName->text().toLatin1());
 
-               if (l != NULL)
+               if (l)
                {
                        QMessageBox::information(parentWidget(), QMessageBox::tr("Layer Properties"),
                                 QMessageBox::tr("Layer with a name \"%1\" already exists. Please specify "