* warning: unused parameter
[Issue#] N/A
[Problem] Build warning
[Cause] Unused parameter
[Solution] Make use of DPL_UNUSED_PARAM()
Change-Id: I9269bf5f182b2cd0d42024b3f2e3d29f68976e17
#include <cstring>
#include <dpl/log/secure_log.h>
#include <dpl/string.h>
+#include <dpl/unused.h>
#include <widget_model.h>
#include <app.h>
bool setAppInfo(WidgetModel* model, Evas_Object* wkView)
{
+ DPL_UNUSED_PARAM(model);
std::string appInfo; // appname/appversion
char* name = NULL;
if (app_get_name(&name) == APP_ERROR_NONE) {
#include <ui-gadget.h>
#include <dpl/log/log.h>
#include <dpl/foreach.h>
+#include <dpl/unused.h>
#include <efl_assist_screen_reader.h>
Evas_Object* /*obj*/,
void* /*eventInfo*/)
{
+ DPL_UNUSED_PARAM(data);
LogDebug("call");
elm_exit();
}