remove data type from variables name

This commit is contained in:
yggverse 2024-09-04 23:00:06 +03:00
parent d812e59794
commit c52a9a3f78
4 changed files with 21 additions and 21 deletions

View file

@ -10,14 +10,14 @@ Label::Label(
);
// Setup label controller
auto GtkGestureClick_RefPtr = Gtk::GestureClick::create();
auto GtkGestureClick = Gtk::GestureClick::create();
/* @TODO remove as default
controller->set_button(
GDK_BUTTON_PRIMARY
);*/
GtkGestureClick_RefPtr->signal_pressed().connect(
GtkGestureClick->signal_pressed().connect(
[this](int n, double x, double y)
{
if (n == 2) // double click
@ -30,7 +30,7 @@ Label::Label(
);
add_controller(
GtkGestureClick_RefPtr
GtkGestureClick
);
}