Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: xfa/src/fwl/src/core/fwl_threadimp.cpp

Issue 1508883003: Replace more static casts in FWL (part 3) (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/src/fwl/src/core/fwl_threadimp.cpp
diff --git a/xfa/src/fwl/src/core/fwl_threadimp.cpp b/xfa/src/fwl/src/core/fwl_threadimp.cpp
index 546f14ad74d76ffaea49113bd6c9b95f35c04f2f..500b2f611bde06ad5cfade01db0a18b50d976419 100644
--- a/xfa/src/fwl/src/core/fwl_threadimp.cpp
+++ b/xfa/src/fwl/src/core/fwl_threadimp.cpp
@@ -39,7 +39,7 @@ FWL_ERR CFWL_NoteThread::Run(FWL_HTHREAD hThread) {
return result;
}
IFWL_NoteDriver* CFWL_NoteThread::GetNoteDriver() {
- return (IFWL_NoteDriver*)m_pNoteDriver;
+ return m_pNoteDriver;
}
extern IFWL_AdapterNative* FWL_GetAdapterNative();
FWL_HTHREAD FWL_StartThread(IFWL_Thread* pThread, FX_BOOL bSuspended) {

Powered by Google App Engine
This is Rietveld 408576698