mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
remove data type from variables name
This commit is contained in:
parent
d812e59794
commit
c52a9a3f78
4 changed files with 21 additions and 21 deletions
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue