summaryrefslogtreecommitdiff
path: root/PluginCommandInterfaceDbus/src/CommandSender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'PluginCommandInterfaceDbus/src/CommandSender.cpp')
-rw-r--r--PluginCommandInterfaceDbus/src/CommandSender.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/PluginCommandInterfaceDbus/src/CommandSender.cpp b/PluginCommandInterfaceDbus/src/CommandSender.cpp
index 5b087cd..7b7f8ae 100644
--- a/PluginCommandInterfaceDbus/src/CommandSender.cpp
+++ b/PluginCommandInterfaceDbus/src/CommandSender.cpp
@@ -34,7 +34,7 @@
#include <assert.h>
#include <set>
-DLT_DECLARE_CONTEXT(DBusCommandPlugin);
+DLT_DECLARE_CONTEXT(DBusCommandPlugin)
/**
* factory for plugin loading
@@ -66,6 +66,7 @@ DbusCommandSender::DbusCommandSender()
DbusCommandSender::~DbusCommandSender()
{
DLT_LOG(DLT_CONTEXT,DLT_LOG_INFO, DLT_STRING("DbusCommandSender destructed"));
+ DLT_UNREGISTER_CONTEXT(DBusCommandPlugin);
}
am_Error_e DbusCommandSender::startupInterface(CommandReceiveInterface* commandreceiveinterface)
@@ -76,7 +77,7 @@ am_Error_e DbusCommandSender::startupInterface(CommandReceiveInterface* commandr
mCommandReceiverShadow.setCommandReceiver(mCommandReceiveInterface);
mCommandReceiveInterface->getDBusConnectionWrapper(mDBusWrapper);
assert(mDBusWrapper!=NULL);
- return E_OK;
+ return (E_OK);
}
@@ -87,7 +88,7 @@ am_Error_e DbusCommandSender::stopInterface()
/**
* todo: finish DbusCommandSender::stopInterface(), what needs to be done?
*/
- return E_OK;
+ return(E_OK);
}