diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-02-03 16:32:45 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-02-03 16:32:45 -0800 |
commit | d2501393eb0c18b5e73506658cd8e8ae0c4ea456 (patch) | |
tree | 6e54302ef42f6b733416fd87b06b1ebe9d76646d /core/include | |
parent | 4dcf74dc6024ece0dc146a64be983ae2ff9df63d (diff) | |
download | pdfium-d2501393eb0c18b5e73506658cd8e8ae0c4ea456.tar.xz |
Merge to XFA: Replace CFX_SmartPointer cast operator with Get() method.
Original Review URL: https://codereview.chromium.org/889673003
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/900693003
Diffstat (limited to 'core/include')
-rw-r--r-- | core/include/fxcrt/fx_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h index b63327c9c2..d8618f4a09 100644 --- a/core/include/fxcrt/fx_basic.h +++ b/core/include/fxcrt/fx_basic.h @@ -1438,7 +1438,7 @@ public: { m_pObj->Release(); } - operator T*(void) + T* Get(void) { return m_pObj; } |