summaryrefslogtreecommitdiff
path: root/core/include/fxcrt/fx_basic.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-02-03 16:32:45 -0800
committerTom Sepez <tsepez@chromium.org>2015-02-03 16:32:45 -0800
commitd2501393eb0c18b5e73506658cd8e8ae0c4ea456 (patch)
tree6e54302ef42f6b733416fd87b06b1ebe9d76646d /core/include/fxcrt/fx_basic.h
parent4dcf74dc6024ece0dc146a64be983ae2ff9df63d (diff)
downloadpdfium-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/fxcrt/fx_basic.h')
-rw-r--r--core/include/fxcrt/fx_basic.h2
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;
}