aboutsummaryrefslogtreecommitdiff
path: root/src/sensor.cpp
diff options
context:
space:
mode:
authorna <noah.andreas@nukura.com>2017-01-26 15:02:18 +0100
committerna <noah.andreas@nukura.com>2017-01-26 15:02:18 +0100
commita2c475d61ad610b0c23d8a6d13afafa9051eb884 (patch)
tree10b8f66d2c7dae68939fe8dceb1b965a49f69435 /src/sensor.cpp
parentc4c572cbbe90f09b66cecabcc13840261f711580 (diff)
downloadlead-a2c475d61ad610b0c23d8a6d13afafa9051eb884.tar
lead-a2c475d61ad610b0c23d8a6d13afafa9051eb884.tar.gz
lead-a2c475d61ad610b0c23d8a6d13afafa9051eb884.zip
namechange
Diffstat (limited to 'src/sensor.cpp')
-rw-r--r--src/sensor.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sensor.cpp b/src/sensor.cpp
index 822dc98..841a4df 100644
--- a/src/sensor.cpp
+++ b/src/sensor.cpp
@@ -29,14 +29,13 @@ SOFTWARE.
#include <QProcess>
-namespace mlde {
namespace lead {
Sensor::Sensor(int x, int y, int w, int h, QString action):
QWidget()
{
- qDebug() << "mlde::lead::Sensor() " << x << "," << y << "," << w << "," << h << " : " << action;
+ qDebug() << "lead::Sensor() " << x << "," << y << "," << w << "," << h << " : " << action;
this->action = action;
@@ -56,10 +55,10 @@ Sensor::~Sensor()
void
Sensor::enterEvent(QEvent * event)
{
- qDebug() << "mlde::lead::Sensor::enterEvent() " << this->x() << ":" << this->y() << " action: " << this->action;
+ qDebug() << "lead::Sensor::enterEvent() " << this->x() << ":" << this->y() << " action: " << this->action;
QProcess::startDetached(action);
}
-}} // namespace
+} // namespace