@@ -7,23 +7,23 @@ using namespace ruis::touch;
77using namespace ruis ::length_literals;
88
99tab_button::tab_button (
10- utki::shared_ref<ruis::context> context, //
11- all_parameters params,
12- ruis::string text
10+ utki::shared_ref<ruis::context> context, //
11+ all_parameters params,
12+ ruis::string text
1313) :
14- widget(
15- std::move (context), //
16- std::move(params.layout_params),
17- std::move(params.widget_params)
18- ),
19- button(
20- this ->context,
21- {
14+ widget(
15+ std::move (context), //
16+ std::move(params.layout_params),
17+ std::move(params.widget_params)
18+ ),
19+ button(
20+ this ->context,
21+ {
2222}
23- ),
24- toggle_button(this ->context),
25- choice_button(this ->context),
26- // clang-format off
23+ ),
24+ toggle_button(this ->context),
25+ choice_button(this ->context),
26+ // clang-format off
2727 ruis::container(
2828 this ->context, //
2929 {
@@ -73,18 +73,18 @@ tab_button::tab_button(
7373
7474ruis::event_status tab_button::on_mouse_button (const ruis::mouse_button_event& event)
7575{
76- return this ->choice_button ::on_mouse_button (event);
76+ return this ->choice_button ::on_mouse_button (event);
7777}
7878
7979utki::shared_ref<ruis::touch::tab_button> ruis::touch::make::tab_button (
8080 utki::shared_ref<ruis::context> context, //
8181 ruis::touch::tab_button::all_parameters params,
82- ruis::string text
82+ ruis::string text
8383)
8484{
8585 return utki::make_shared<ruis::touch::tab_button>(
86- std::move (context),
87- std::move (params),
88- std::move (text)
89- );
86+ std::move (context), //
87+ std::move (params),
88+ std::move (text)
89+ );
9090}
0 commit comments