summaryrefslogtreecommitdiff
path: root/src/CommonAPI/DBus/DBusError.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommonAPI/DBus/DBusError.cpp')
-rw-r--r--src/CommonAPI/DBus/DBusError.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/CommonAPI/DBus/DBusError.cpp b/src/CommonAPI/DBus/DBusError.cpp
index 4b58a5e..9dfb082 100644
--- a/src/CommonAPI/DBus/DBusError.cpp
+++ b/src/CommonAPI/DBus/DBusError.cpp
@@ -1,18 +1,16 @@
-/* Copyright (C) 2013 BMW Group
- * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
- * Author: Juergen Gehring (juergen.gehring@bmw.de)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#include "DBusError.h"
+// Copyright (C) 2013-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <cassert>
#include <cstring>
+#include <CommonAPI/DBus/DBusError.hpp>
+
namespace CommonAPI {
namespace DBus {
-
DBusError::DBusError() {
dbus_error_init(&libdbusError_);
}
@@ -22,7 +20,7 @@ DBusError::~DBusError() {
}
DBusError::operator bool() const {
- return dbus_error_is_set(&libdbusError_);
+ return 0 != dbus_error_is_set(&libdbusError_);
}
void DBusError::clear() {