From: Grzegorz Rynkowski Date: Fri, 22 Mar 2013 13:20:49 +0000 (+0100) Subject: Remove of build warnings. X-Git-Tag: accepted/tizen_2.1/20130425.023916~18^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=511477c9102e336b630e1aceec0168c538bd5020;p=framework%2Fweb%2Fwrt-installer.git Remove of build warnings. [Issue#] N/A [Problem] Build warnings. [Cause] N/A [Solution] Correction of code. Change-Id: Ib6a1157ebf408292abd8edcb7fd46644b8ede668 --- diff --git a/src/configuration_parser/widget_parser.cpp b/src/configuration_parser/widget_parser.cpp index 026a84d..94e57e8 100644 --- a/src/configuration_parser/widget_parser.cpp +++ b/src/configuration_parser/widget_parser.cpp @@ -2274,15 +2274,15 @@ class AccountParser : public ElementParser IconParser(ConfigParserData::AccountProvider& data) : ElementParser(), m_properNamespace(false), - m_data(data), - m_type(ConfigParserData::DefaultIcon) + m_type(ConfigParserData::DefaultIcon), + m_data(data) {} private: bool m_properNamespace; ConfigParserData::IconSectionType m_type; - DPL::OptionalString m_value; ConfigParserData::AccountProvider& m_data; + DPL::OptionalString m_value; }; struct DisplayNameParser : public ElementParser @@ -2394,7 +2394,7 @@ class AccountParser : public ElementParser } } - virtual void Accept(const Text& text) + virtual void Accept(const Text& /*text*/) {} virtual void Accept(const Element& /*element*/) @@ -2436,8 +2436,8 @@ class AccountParser : public ElementParser AccountProviderParser(ConfigParserData::AccountProvider& data) : ElementParser(), m_properNamespace(false), - m_data(data), - m_multiSupport(false) + m_multiSupport(false), + m_data(data) {} private: