diff options
Diffstat (limited to 'xfa/fxfa/cxfa_fflistbox.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_fflistbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_fflistbox.cpp b/xfa/fxfa/cxfa_fflistbox.cpp index c086953a29..66e1fdb4d0 100644 --- a/xfa/fxfa/cxfa_fflistbox.cpp +++ b/xfa/fxfa/cxfa_fflistbox.cpp @@ -205,6 +205,6 @@ void CXFA_FFListBox::OnProcessEvent(CFWL_Event* pEvent) { } void CXFA_FFListBox::OnDrawWidget(CXFA_Graphics* pGraphics, - const CFX_Matrix* pMatrix) { - m_pOldDelegate->OnDrawWidget(pGraphics, pMatrix); + const CFX_Matrix& matrix) { + m_pOldDelegate->OnDrawWidget(pGraphics, matrix); } |