| Index: xfa/src/fxfa/src/app/xfa_fftext.cpp
|
| diff --git a/xfa/src/fxfa/src/app/xfa_fftext.cpp b/xfa/src/fxfa/src/app/xfa_fftext.cpp
|
| index 126d47d64b98e1b7b2551e3e99b8952b6039adef..a187e2acda01212d062694f34c4d9ad7eeba5ac3 100644
|
| --- a/xfa/src/fxfa/src/app/xfa_fftext.cpp
|
| +++ b/xfa/src/fxfa/src/app/xfa_fftext.cpp
|
| @@ -161,7 +161,7 @@ const FX_WCHAR* CXFA_FFText::GetLinkURLAtPoint(FX_FLOAT fx, FX_FLOAT fy) {
|
| CXFA_PieceLine* pPieceLine = pPieceLines->GetAt(i);
|
| int32_t iPieces = pPieceLine->m_textPieces.GetSize();
|
| for (int32_t j = 0; j < iPieces; j++) {
|
| - XFA_LPTEXTPIECE pPiece = pPieceLine->m_textPieces.GetAt(j);
|
| + XFA_TEXTPIECE* pPiece = pPieceLine->m_textPieces.GetAt(j);
|
| if (pPiece->pLinkData && pPiece->rtPiece.Contains(x, y)) {
|
| return pPiece->pLinkData->GetLinkURL();
|
| }
|
|
|