]> Shamusworld >> Repos - architektonas/blobdiff - src/widgets/layerbox.cpp
In the middle of chasing down MDI not activating bug, renaming of Graphic to
[architektonas] / src / widgets / layerbox.cpp
index 8024476fbf27765806d0be33f453a0b73bb834ea..5326f803ed85f4fab8464b079583fece2ba4ca6c 100644 (file)
@@ -20,8 +20,7 @@
 #include "layerlist.h"
 
 /**
- * Default Constructor. You must call init manually before using
- * this class.
+ * Default Constructor. You must call init manually before using this class.
  */
 LayerBox::LayerBox(QWidget * parent, const char */*name*/): QComboBox(parent)
 {
@@ -39,35 +38,32 @@ LayerBox::~LayerBox()
 {
 }
 
-RS_Layer * LayerBox::getLayer()
+Layer * LayerBox::getLayer()
 {
        return currentLayer;
 }
 
 /**
- * Initialisation (called manually only once).
+ * Initialization (called manually only once).
  *
- * @param layerList Layer list which provides the layer names that are
- *                  available.
+ * @param layerList Layer list which provides the layer names that are available.
  * @param showByBlock true: Show attribute ByBlock.
  */
-void LayerBox::init(RS_LayerList & layerList, bool showByBlock, bool showUnchanged)
+void LayerBox::init(LayerList & layerList, bool showByBlock, bool showUnchanged)
 {
        this->showByBlock = showByBlock;
        this->showUnchanged = showUnchanged;
        this->layerList = &layerList;
 
        if (showUnchanged)
-//             insertItem(tr("- Unchanged -"));
                addItem(tr("- Unchanged -"));
 
        for(uint i=0; i<layerList.count(); ++i)
        {
-               RS_Layer * lay = layerList.at(i);
+               Layer * currentLayer = layerList.at(i);
 
-               if (lay != NULL && (lay->getName() != "ByBlock" || showByBlock))
-//                     insertItem(lay->getName());
-                       addItem(lay->getName());
+               if (currentLayer != NULL && (currentLayer->getName() != "ByBlock" || showByBlock))
+                       addItem(currentLayer->getName());
        }
 
        connect(this, SIGNAL(activated(int)), this, SLOT(slotLayerChanged(int)));
@@ -78,7 +74,7 @@ void LayerBox::init(RS_LayerList & layerList, bool showByBlock, bool showUnchang
 /**
  * Sets the layer shown in the combobox to the given layer.
  */
-void LayerBox::setLayer(RS_Layer & layer)
+void LayerBox::setLayer(Layer & layer)
 {
        currentLayer = &layer;