//2022-10-28
void wxGUIEditorGraphicBBS::OnClickBtnSelectBoxes(wxCommandEvent& event)
{
- std::string nameFilter = _pkgBrowser->GetNameFilter();
- _tabsMgr->SelectBoxWithPossibleName( nameFilter );
+ std::string nameFilter = _pkgBrowser->GetNameFilter();
+ _tabsMgr->SelectBoxWithPossibleName( nameFilter );
}
//=========================================================================
//=========================================================================
// EED 2022-10-28
- bool wxGEditorTabPanel::SelectBoxWithPossibleName(std::string nameFilter )
+ void wxGEditorTabPanel::SelectBoxWithPossibleName(std::string nameFilter )
{
getSceneManager()->SelectBoxWithPossibleName( nameFilter );
}
std::string GetMessageKind();
std::string GetMessageLevel();
- bool SelectBoxWithPossibleName(std::string nameFilter );
+ void SelectBoxWithPossibleName(std::string nameFilter );
//=========================================================================
//=========================================================================
// EED 2022-10-28
- bool wxTabPanelsManager::SelectBoxWithPossibleName(std::string nameFilter )
+ void wxTabPanelsManager::SelectBoxWithPossibleName(std::string nameFilter )
{
- _actual->SelectBoxWithPossibleName( nameFilter );
+ _actual->SelectBoxWithPossibleName( nameFilter );
}
} // EO namespace bbtk
std::string GetCurrentTabPanelPath( ); //DFCH
int FindTab(std::string filename);
bool TryToOpenScriptApplication(std::string packageName ,std::string boxType);
- bool SelectBoxWithPossibleName(std::string nameFilter );
+ void SelectBoxWithPossibleName(std::string nameFilter );
private:
//=========================================================================
//EED 2022-10-28
void wxVtkSceneManager::SelectBoxWithPossibleName( std::string possibleName )
-{
+{
UnSelectBlackBoxes();
std::map<int, GObjectController*>::iterator it;
GObjectController *desc;
} // if pos
} // if type == 1
} // for it
- refresh();
+ refresh();
}
} // EO namespace bbtk