Removing copy&paste code, part 1
authorJanusz Majnert <j.majnert@samsung.com>
Wed, 21 Nov 2012 12:30:31 +0000 (13:30 +0100)
committerGerrit Code Review <gerrit2@kim11>
Thu, 22 Nov 2012 12:12:58 +0000 (21:12 +0900)
commitae7f5d657aafac0c0712e4de0b8c55e3e8a272ad
tree62ca8b24ad0474c83db32ce5136312c3de9c6b5f
parent0b070515690ed60255fd1eef8404b9fba2ed4fe6
Removing copy&paste code, part 1

[Issue#] N/A
[Problem] Duplicated code
[Cause] Copy&paste
[Solution] Extract common code, generalise it
[Verification] Build the package and run all tests

Changes:
- In test_collector:
    - Created a macro for "OK" test result message
    - Moved parsing of "--file" argument to a common function
- In widget dao ro, extracted namespaces from inside the methods to file level
  and removed unnecessary namespace selection in variable declarations
- In popup_renderer, instead of duplicating code for adding 1, 2 or 3 buttons
  to a popup, DoRender(btn1,btn2,btn3) now uses DoRender(btn1,btn2) to add first
  two buttons, which in turn used DoRender(btn1) to add the first button.
- In security_origin_dao, hadResult now calls getResult instead of duplicating
  the same select statement.
- Removed modules/widget_dao/dao/bind_to_dao.h - it wasn't used anywhere and it
  was a copy of modules/event/include/dpl/event/model_bind_to_dao.h

Change-Id: I3fef08333844963b5987125dc36045fa185e4699
modules/popup/src/popup_renderer.cpp
modules/security_origin_dao/dao/security_origin_dao.cpp
modules/test/src/test_results_collector.cpp
modules/widget_dao/dao/bind_to_dao.h [deleted file]
modules/widget_dao/dao/widget_dao_read_only.cpp