diff options
Diffstat (limited to 'xfa/fwl/core/ifwl_dataprovider.h')
-rw-r--r-- | xfa/fwl/core/ifwl_dataprovider.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fwl/core/ifwl_dataprovider.h b/xfa/fwl/core/ifwl_dataprovider.h index 53c6ec4055..c4e1a4ea76 100644 --- a/xfa/fwl/core/ifwl_dataprovider.h +++ b/xfa/fwl/core/ifwl_dataprovider.h @@ -8,7 +8,6 @@ #define XFA_FWL_CORE_IFWL_DATAPROVIDER_H_ #include "core/fxcrt/fx_string.h" -#include "xfa/fwl/core/fwl_error.h" class IFWL_Widget; @@ -16,8 +15,7 @@ class IFWL_DataProvider { public: virtual ~IFWL_DataProvider() {} - virtual FWL_Error GetCaption(IFWL_Widget* pWidget, - CFX_WideString& wsCaption) = 0; + virtual void GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption) = 0; }; #endif // XFA_FWL_CORE_IFWL_DATAPROVIDER_H_ |