savio pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=916ddb46b868bbdc8036d81671364ee191ecc889
commit 916ddb46b868bbdc8036d81671364ee191ecc889 Author: Savio Sena <sa...@expertisesolutions.com.br> Date: Wed Sep 3 15:24:09 2014 -0300 eolian-cxx: Fix generated code indentation. --- src/lib/eolian_cxx/grammar/eo_class_events_generator.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eolian_cxx/grammar/eo_class_events_generator.hh b/src/lib/eolian_cxx/grammar/eo_class_events_generator.hh index fe9184d..596bb8b 100644 --- a/src/lib/eolian_cxx/grammar/eo_class_events_generator.hh +++ b/src/lib/eolian_cxx/grammar/eo_class_events_generator.hh @@ -45,8 +45,8 @@ operator<<(std::ostream& out, event_callback_add const& x) out << tab(1) << "template <typename F>" << endl << tab(1) << "::efl::eo::signal_connection" << endl << tab(1) << "callback_" << x._event.name << "_add(F && callback_," << endl - << tab(11) << "::efl::eo::callback_priority priority_ =" << endl - << tab(11) << "::efl::eo::callback_priorities::default_)" << endl + << tab(8) << "::efl::eo::callback_priority priority_ =" << endl + << tab(8) << "::efl::eo::callback_priorities::default_)" << endl << tab(1) << "{" << endl << tab(2) << "typedef typename std::remove_reference<F>::type function_type;" << endl << tab(2) << "::std::unique_ptr<function_type> f ( new function_type(std::move(callback_)) );" << endl --