Files
newspark110/ui/forms/qg_activelayername.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

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);
}