diff options
| author | na <noah.andreas@nukura.com> | 2017-01-21 21:10:09 +0100 |
|---|---|---|
| committer | na <noah.andreas@nukura.com> | 2017-01-21 21:10:09 +0100 |
| commit | 52fdab964c7df42dee94840198a3a0ee8e2efd4a (patch) | |
| tree | 7c78d8d1f36faf7406135050cf7febceb73d6ce9 /src/sensor.cpp | |
| parent | 686f3fba2f152a9b8ca66cc2cabc82bef5296fab (diff) | |
| download | lead-52fdab964c7df42dee94840198a3a0ee8e2efd4a.tar lead-52fdab964c7df42dee94840198a3a0ee8e2efd4a.tar.gz lead-52fdab964c7df42dee94840198a3a0ee8e2efd4a.zip | |
changed namespace
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); } |
