mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
style fixes: mostly just things that make my eyes bleed :)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user