style fixes: mostly just things that make my eyes bleed :)

This commit is contained in:
Mathew Sutcliffe
2013-08-13 22:29:48 +01:00
parent e8b52b33d0
commit 2c781e8b36
50 changed files with 975 additions and 917 deletions

View File

@@ -22,7 +22,8 @@ QString CCoordinateGeodetic::convertToQString(bool i18n) const
/*
* Marshall to Dbus
*/
void CCoordinateGeodetic::marshallToDbus(QDBusArgument &argument) const {
void CCoordinateGeodetic::marshallToDbus(QDBusArgument &argument) const
{
argument << this->m_latitude;
argument << this->m_longitude;
argument << this->m_height;
@@ -31,7 +32,8 @@ void CCoordinateGeodetic::marshallToDbus(QDBusArgument &argument) const {
/*
* Unmarshall from Dbus
*/
void CCoordinateGeodetic::unmarshallFromDbus(const QDBusArgument &argument) {
void CCoordinateGeodetic::unmarshallFromDbus(const QDBusArgument &argument)
{
argument >> this->m_latitude;
argument >> this->m_longitude;
argument >> this->m_height;