Kaydet (Commit) e53168c6 authored tarafından Noel Grandin's avatar Noel Grandin

improve indentation

Change-Id: I1ca7f386cbd85d64e86fe293b2a4a4cbb205edef
üst 5c3ea5d9
...@@ -184,13 +184,13 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt ) ...@@ -184,13 +184,13 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt )
switch(rNEvt.GetType()) switch(rNEvt.GetType())
{ {
case MouseNotifyEvent::KEYINPUT: case MouseNotifyEvent::KEYINPUT:
if ( (m_pPropWin && m_pPropWin->HasChildPathFocus()) ) {
if ( m_pPropWin && m_pPropWin->HasChildPathFocus() )
return false; return false;
if ( (m_pAddField && m_pAddField->HasChildPathFocus()) ) if ( m_pAddField && m_pAddField->HasChildPathFocus() )
return false; return false;
if ( (m_pReportExplorer && m_pReportExplorer->HasChildPathFocus()) ) if ( m_pReportExplorer && m_pReportExplorer->HasChildPathFocus() )
return false; return false;
{
const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent(); const KeyEvent* pKeyEvent = rNEvt.GetKeyEvent();
if ( handleKeyEvent(*pKeyEvent) ) if ( handleKeyEvent(*pKeyEvent) )
bRet = true; bRet = true;
...@@ -202,8 +202,8 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt ) ...@@ -202,8 +202,8 @@ bool ODesignView::PreNotify( NotifyEvent& rNEvt )
if ( aUrl.Complete.isEmpty() || !m_xController->isCommandEnabled( aUrl.Complete ) ) if ( aUrl.Complete.isEmpty() || !m_xController->isCommandEnabled( aUrl.Complete ) )
bRet = false; bRet = false;
} }
}
break; break;
}
default: default:
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment