diff options
Diffstat (limited to 'src/sensor.cpp')
| -rw-r--r-- | src/sensor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sensor.cpp b/src/sensor.cpp index 41c4326..822dc98 100644 --- a/src/sensor.cpp +++ b/src/sensor.cpp @@ -29,14 +29,14 @@ SOFTWARE. #include <QProcess> -namespace kernladung { +namespace mlde { namespace lead { Sensor::Sensor(int x, int y, int w, int h, QString action): QWidget() { - qDebug() << "kernladung::lead::Sensor() " << x << "," << y << "," << w << "," << h << " : " << action; + qDebug() << "mlde::lead::Sensor() " << x << "," << y << "," << w << "," << h << " : " << action; this->action = action; @@ -56,7 +56,7 @@ Sensor::~Sensor() void Sensor::enterEvent(QEvent * event) { - qDebug() << "kernladung::lead::Sensor::enterEvent() " << this->x() << ":" << this->y() << " action: " << this->action; + qDebug() << "mlde::lead::Sensor::enterEvent() " << this->x() << ":" << this->y() << " action: " << this->action; QProcess::startDetached(action); } |
