improve indentation

Change-Id: I1ca7f386cbd85d64e86fe293b2a4a4cbb205edef
This commit is contained in:
Noel Grandin 2016-11-07 14:18:32 +02:00
parent 5c3ea5d9aa
commit e53168c687

View File

@ -184,13 +184,13 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt )
switch(rNEvt.GetType())
{
case MouseNotifyEvent::KEYINPUT:
if ( (m_pPropWin && m_pPropWin->HasChildPathFocus()) )
return false;
if ( (m_pAddField && m_pAddField->HasChildPathFocus()) )
return false;
if ( (m_pReportExplorer && m_pReportExplorer->HasChildPathFocus()) )
return false;
{
if ( m_pPropWin && m_pPropWin->HasChildPathFocus() )
return false;
if ( m_pAddField && m_pAddField->HasChildPathFocus() )
return false;
if ( m_pReportExplorer && m_pReportExplorer->HasChildPathFocus() )
return false;
const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
if ( handleKeyEvent(*pKeyEvent) )
bRet = true;
@ -202,8 +202,8 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt )
if ( aUrl.Complete.isEmpty() || !m_xController->isCommandEnabled( aUrl.Complete ) )
bRet = false;
}
}
break;
}
default:
break;
}