Issue 0020368: SMESHGUI_MeshDlg::isTabEnabled must return something

This commit is contained in:
vsr 2009-05-27 14:10:47 +00:00
parent 9df276244b
commit b726570a5c

View File

@ -583,7 +583,7 @@ void SMESHGUI_MeshDlg::enableTab(const int theTabId) {
*/ */
//================================================================================ //================================================================================
bool SMESHGUI_MeshDlg::isTabEnabled(const int theTabId) const { bool SMESHGUI_MeshDlg::isTabEnabled(const int theTabId) const {
myTabWg->isTabEnabled( myTabWg->indexOf( myTabs[ theTabId ] ) ); return myTabWg->isTabEnabled( myTabWg->indexOf( myTabs[ theTabId ] ) );
} }
void SMESHGUI_MeshDlg::onGeomSelectionButton(bool isBtnOn) void SMESHGUI_MeshDlg::onGeomSelectionButton(bool isBtnOn)