Index: fpdfsdk/pdfwindow/PWL_Edit.cpp |
diff --git a/fpdfsdk/pdfwindow/PWL_Edit.cpp b/fpdfsdk/pdfwindow/PWL_Edit.cpp |
index e39b6c13c702f6e126afb7fc59144902b9ba87de..eec1fd98c7a1e43aa6a1cbe4a1a5723c3bf34405 100644 |
--- a/fpdfsdk/pdfwindow/PWL_Edit.cpp |
+++ b/fpdfsdk/pdfwindow/PWL_Edit.cpp |
@@ -294,13 +294,13 @@ void CPWL_Edit::GetThisAppearanceStream(CFX_ByteTextBuf& sAppStream) { |
<< sEditAfter.AsStringC() << "ET\n"; |
if (sText.GetLength() > 0) { |
- CFX_FloatRect rcClient = GetClientRect(); |
+ CFX_FloatRect rect = GetClientRect(); |
sAppStream << "q\n/Tx BMC\n"; |
if (!HasFlag(PES_TEXTOVERFLOW)) |
- sAppStream << rcClient.left << " " << rcClient.bottom << " " |
- << rcClient.right - rcClient.left << " " |
- << rcClient.top - rcClient.bottom << " re W n\n"; |
+ sAppStream << rect.left << " " << rect.bottom << " " |
+ << rect.right - rect.left << " " << rect.top - rect.bottom |
+ << " re W n\n"; |
sAppStream << sText; |