From: nds Date: Mon, 29 May 2017 12:04:43 +0000 (+0300) Subject: Correction for Jenkins: number of symbols should be less than 100 X-Git-Tag: V_2.7.1.1~20 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=0d36863d59c8db5e25daa2265a38bc50eb085d27;p=modules%2Fshaper.git Correction for Jenkins: number of symbols should be less than 100 --- diff --git a/src/XGUI/XGUI_OperationMgr.cpp b/src/XGUI/XGUI_OperationMgr.cpp index 17e7ae51f..728bd1641 100644 --- a/src/XGUI/XGUI_OperationMgr.cpp +++ b/src/XGUI/XGUI_OperationMgr.cpp @@ -604,7 +604,8 @@ bool XGUI_OperationMgr::onKeyReleased(QObject *theObject, QKeyEvent* theEvent) ModuleBase_Operation* aOperation = currentOperation(); if (aOperation) { ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel(); - if (aPanel) { // check for case when the operation is started but property panel is not filled + if (aPanel) { + // check for case when the operation is started but property panel is not filled XGUI_PropertyPanel* aPP = dynamic_cast(aPanel); aPP->focusNextPrevChild_(theEvent->key() == Qt::Key_Tab); isAccepted = true;