Index: fpdfsdk/src/fsdk_baseform.cpp |
diff --git a/fpdfsdk/src/fsdk_baseform.cpp b/fpdfsdk/src/fsdk_baseform.cpp |
index 8d62a16ff4fbbe6f94cbb9c578f6326c60922067..936d8817808f6797b4888ca2a8d243afacbd6c2c 100644 |
--- a/fpdfsdk/src/fsdk_baseform.cpp |
+++ b/fpdfsdk/src/fsdk_baseform.cpp |
@@ -349,7 +349,7 @@ FX_BOOL CPDFSDK_Widget::IsAppModified() const |
return m_bAppModified; |
} |
-void CPDFSDK_Widget::ResetAppearance(FX_LPCWSTR sValue, FX_BOOL bValueChanged) |
+void CPDFSDK_Widget::ResetAppearance(const FX_WCHAR* sValue, FX_BOOL bValueChanged) |
{ |
SetAppModified(); |
@@ -1024,7 +1024,7 @@ void CPDFSDK_Widget::ResetAppearance_RadioButton() |
SetAppState("Off"); |
} |
-void CPDFSDK_Widget::ResetAppearance_ComboBox(FX_LPCWSTR sValue) |
+void CPDFSDK_Widget::ResetAppearance_ComboBox(const FX_WCHAR* sValue) |
{ |
CPDF_FormControl* pControl = GetFormControl(); |
ASSERT(pControl != NULL); |
@@ -1198,7 +1198,7 @@ void CPDFSDK_Widget::ResetAppearance_ListBox() |
WriteAppearance("N", GetRotatedRect(), GetMatrix(), sAP); |
} |
-void CPDFSDK_Widget::ResetAppearance_TextField(FX_LPCWSTR sValue) |
+void CPDFSDK_Widget::ResetAppearance_TextField(const FX_WCHAR* sValue) |
{ |
CPDF_FormControl* pControl = GetFormControl(); |
ASSERT(pControl != NULL); |
@@ -2042,7 +2042,7 @@ CFX_WideString CPDFSDK_InterForm::OnFormat(CPDF_FormField* pFormField, int nComm |
return sValue; |
} |
-void CPDFSDK_InterForm::ResetFieldAppearance(CPDF_FormField* pFormField, FX_LPCWSTR sValue, FX_BOOL bValueChanged) |
+void CPDFSDK_InterForm::ResetFieldAppearance(CPDF_FormField* pFormField, const FX_WCHAR* sValue, FX_BOOL bValueChanged) |
{ |
ASSERT(pFormField != NULL); |
@@ -2255,7 +2255,7 @@ FX_BOOL CPDFSDK_InterForm::SubmitFields(const CFX_WideString& csDestination, con |
CFX_ByteTextBuf textBuf; |
ExportFieldsToFDFTextBuf(fields, bIncludeOrExclude, textBuf); |
- FX_LPBYTE pBuffer = textBuf.GetBuffer(); |
+ uint8_t* pBuffer = textBuf.GetBuffer(); |
FX_STRSIZE nBufSize = textBuf.GetLength(); |
if (bUrlEncoded) |
@@ -2310,7 +2310,7 @@ FX_BOOL CPDFSDK_InterForm::FDFToURLEncodedData(CFX_WideString csFDFFile, CFX_Wid |
return TRUE; |
} |
-FX_BOOL CPDFSDK_InterForm::FDFToURLEncodedData(FX_LPBYTE& pBuf, FX_STRSIZE& nBufSize) |
+FX_BOOL CPDFSDK_InterForm::FDFToURLEncodedData(uint8_t*& pBuf, FX_STRSIZE& nBufSize) |
{ |
CFDF_Document* pFDF = CFDF_Document::ParseMemory(pBuf, nBufSize); |
if (pFDF) |
@@ -2389,7 +2389,7 @@ FX_BOOL CPDFSDK_InterForm::SubmitForm(const CFX_WideString& sDestination, FX_BOO |
delete pFDFDoc; |
if (!bRet) return FALSE; |
- FX_LPBYTE pBuffer = FdfBuffer.GetBuffer(); |
+ uint8_t* pBuffer = FdfBuffer.GetBuffer(); |
FX_STRSIZE nBufSize = FdfBuffer.GetLength(); |
if (bUrlEncoded) |