16 lines
302 B
C++
16 lines
302 B
C++
#include "qg_activelayername.h"
|
|
#include "rs_settings.h"
|
|
|
|
QG_ActiveLayerName::QG_ActiveLayerName(QWidget *parent) :
|
|
QWidget(parent)
|
|
{
|
|
setupUi(this);
|
|
|
|
lActiveLayerName->setText("");
|
|
}
|
|
|
|
void QG_ActiveLayerName::activeLayerChanged(const QString& name)
|
|
{
|
|
lActiveLayerName->setText(name);
|
|
}
|