diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:35:43 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-11 17:35:43 +0100 |
commit | 6dc2d2573dbfcbe67e65476e8b25470f0a2312d0 (patch) | |
tree | e42348c6a4244a805a5423abdf4c0fffebc1bf33 /include | |
parent | 8b614e7b98ea434c496721052007349656bd33dd (diff) |
loplugin:redundantcast: vcl
(after a to-be-committed improved loplugin:cstylecast would have rewritten the
C-style casts into static_casts)
Change-Id: I5e515738a29c6d79154560d69c8b86885800ba88
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/field.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx index 3fb0633fe3a6..c4139bb7d2d7 100644 --- a/include/vcl/field.hxx +++ b/include/vcl/field.hxx @@ -390,7 +390,7 @@ public: const tools::Time& GetMax() const { return maMax; } void SetTimeFormat( TimeFormat eNewFormat ); - TimeFormat GetTimeFormat() const { return (TimeFormat)mnTimeFormat;} + TimeFormat GetTimeFormat() const { return mnTimeFormat;} void SetFormat( TimeFieldFormat eNewFormat ); TimeFieldFormat GetFormat() const { return meFormat; } |