Commit dd48906a559dc247912ef357601b1bc2e56494b3

Added author information
  
1/*
2 * qorientationcapability.cpp
3 * author: Timo Härkönen
4 */
5
16#include "qorientationcapability.h"
27#include "qorientationcapability_p.h"
38#include "moc_qorientationcapability.cpp"
  
1/*
2 * qorientationcapability.h
3 * author: Timo Härkönen
4 */
5
16#ifndef QORIENTATIONCAPABILITY_H
27#define QORIENTATIONCAPABILITY_H
38
  
1/*
2 * qorientationcapability_p.h
3 * author: Timo Härkönen
4 */
5
6
17#ifndef QORIENTATIONCAPABILITY_P_H
28#define QORIENTATIONCAPABILITY_P_H
39
6060 // Query current device orientation to start in correct mode
6161 QDBusMessage msg = QDBusMessage::createMethodCall(MCE_SERVICE, MCE_REQUEST_PATH, MCE_REQUEST_IF, MCE_DEVICE_ORIENTATION_GET);
6262
63 // We ignore the last three arguments of the orientation information (x, y and z axis)
63 // Ignore the last three arguments of the orientation information (x, y and z axis)
6464 QDBusConnection::systemBus().callWithCallback(msg, pub, SLOT(orientationUpdate(QString, QString, QString)));
6565 }
6666}