summaryrefslogtreecommitdiff
path: root/xfa/fwl/theme/cfwl_arrowdata.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-21 11:56:07 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-21 11:56:07 -0800
commit43170f498b8c619620c4141b2d67ef6ab9a518ca (patch)
treebdce03d265f3ae0ca0f6ee171ee1099124735d5e /xfa/fwl/theme/cfwl_arrowdata.h
parentac9934bfd0570526fb5b688670f32efa56648f5d (diff)
downloadpdfium-43170f498b8c619620c4141b2d67ef6ab9a518ca.tar.xz
Update SetThemeColor and SetThemeData
The SetThemeColor and SetThemeData methods are always called with a parameter of 0. This Cl removes the parameter and updates the code as needed. Review-Url: https://codereview.chromium.org/2521683002
Diffstat (limited to 'xfa/fwl/theme/cfwl_arrowdata.h')
-rw-r--r--xfa/fwl/theme/cfwl_arrowdata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xfa/fwl/theme/cfwl_arrowdata.h b/xfa/fwl/theme/cfwl_arrowdata.h
index 1bcdac15fb..0062e4d6a4 100644
--- a/xfa/fwl/theme/cfwl_arrowdata.h
+++ b/xfa/fwl/theme/cfwl_arrowdata.h
@@ -24,13 +24,14 @@ class CFWL_ArrowData {
static CFWL_ArrowData* GetInstance();
static bool HasInstance();
static void DestroyInstance();
- void SetColorData(uint32_t dwID);
std::unique_ptr<CColorData> m_pColorData;
private:
CFWL_ArrowData();
~CFWL_ArrowData();
+
+ void SetColorData();
};
#endif // XFA_FWL_THEME_CFWL_ARROWDATA_H_