Index: xfa/fwl/core/ifwl_tooltiptarget.h |
diff --git a/xfa/fwl/core/ifwl_tooltiptarget.h b/xfa/fwl/core/ifwl_tooltiptarget.h |
index 7489e73efd0a5d86b798c8aa3d199a7da083a126..c6a47d0e0956e269cab282e8f687454267a0824e 100644 |
--- a/xfa/fwl/core/ifwl_tooltiptarget.h |
+++ b/xfa/fwl/core/ifwl_tooltiptarget.h |
@@ -26,9 +26,11 @@ class IFWL_ToolTipTarget { |
virtual FX_BOOL UseDefaultTheme() = 0; |
virtual FWL_Error GetCaption(CFX_WideString& wsCaption) = 0; |
virtual FWL_Error GetToolTipSize(CFX_SizeF& sz) = 0; |
- virtual FWL_Error GetToolTipPos(CFX_PointF& pt) { |
- return FWL_Error::Indefinite; |
- } |
+ virtual FWL_Error GetToolTipPos(CFX_PointF& pt); |
}; |
+inline FWL_Error GetToolTipPos(CFX_PointF& pt) { |
+ return FWL_Error::Indefinite; |
+} |
+ |
#endif // XFA_FWL_CORE_IFWL_TOOLTIPTARGET_H_ |