ui/qt/button.cpp

changeset 672
1b08ba076b65
parent 659
d6baaa93f7be
child 703
4ee6a23bdcbf
--- a/ui/qt/button.cpp	Fri Jul 18 21:49:29 2025 +0200
+++ b/ui/qt/button.cpp	Fri Jul 18 21:54:33 2025 +0200
@@ -43,7 +43,7 @@
         button->connect(button, SIGNAL(destroyed()), event, SLOT(destroy()));
     }
     
-    ctn->add(button, false);
+    ctn->add(button);
     
     return button;
 }
@@ -88,7 +88,7 @@
         i->set = ui_togglebutton_set;
     }
     
-    ctn->add(button, false);
+    ctn->add(button);
     
     return button;
 }
@@ -147,7 +147,7 @@
         i->set = ui_checkbox_set;
     }
     
-    ctn->add(checkbox, false);
+    ctn->add(checkbox);
     
     return checkbox;
 }
@@ -208,7 +208,7 @@
     button->connect(button, SIGNAL(clicked()), event, SLOT(slot()));
     button->connect(button, SIGNAL(destroyed()), event, SLOT(destroy()));
     
-    ctn->add(button, false);
+    ctn->add(button);
     
     return button;
 }

mercurial