Skip to content
Snippets Groups Projects
Commit e795181b authored by Andreas Schenk's avatar Andreas Schenk
Browse files

added variable initialization to suppress warning in overlay manager gui

parent 206ed603
Branches
Tags
No related merge requests found
...@@ -135,6 +135,7 @@ void OverlayManagerGUI::OnAddOverlay(OverlayManager* m, int id) ...@@ -135,6 +135,7 @@ void OverlayManagerGUI::OnAddOverlay(OverlayManager* m, int id)
OverlayPtr ov = m->RetrieveOverlay(id); OverlayPtr ov = m->RetrieveOverlay(id);
connect(ov.get(),SIGNAL(InfoTextChanged(const QString&)),this,SLOT(SetInfoText(const QString&))); connect(ov.get(),SIGNAL(InfoTextChanged(const QString&)),this,SLOT(SetInfoText(const QString&)));
OverlayEntry oe; OverlayEntry oe;
oe.row=0.0;
oe.a=new OverlayCustomActCheckBox(id,m); oe.a=new OverlayCustomActCheckBox(id,m);
connect(oe.a,SIGNAL(toggled(bool)),oe.a,SLOT(OnToggle(bool))); connect(oe.a,SIGNAL(toggled(bool)),oe.a,SLOT(OnToggle(bool)));
active_group_->addButton(oe.a); active_group_->addButton(oe.a);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment