Missing null check (triggered e.g. by CppunitTest_dbaccess_dialog_save)
Change-Id: I2f78ca59bfebbcffd9a6d0309c49179457bd9172
This commit is contained in:
parent
47b520024a
commit
ae2cccdd2c
@ -686,7 +686,7 @@ void OAppDetailPageHelper::setDetailPage(Window* _pWindow)
|
||||
bool bHasFocus = false;
|
||||
m_aFL.Show();
|
||||
{
|
||||
bHasFocus = pCurrent->HasChildPathFocus();
|
||||
bHasFocus = pCurrent != 0 && pCurrent->HasChildPathFocus();
|
||||
_pWindow->Show();
|
||||
}
|
||||
m_aTBPreview.Show();
|
||||
|
Loading…
x
Reference in New Issue
Block a user