diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:23:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-12 20:23:31 +0100 |
commit | 867d0f5f7b1fb4c487aaee1ae6ab707971a9b8d1 (patch) | |
tree | fc6a164b6adc54229b8704a2299994865c41d2d0 /fpicker/source/office/OfficeControlAccess.hxx | |
parent | cf8b8cad053e0e9783cdc8f08ce886e2ae4b7eb0 (diff) |
More loplugin:cstylecast: fpicker
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable
loplugin:cstylecast for some more cases" plus
solenv/clang-format/reformat-formatted-files
Change-Id: I41dc5653f0da71b0efadc9ce09b22231d3321827
Diffstat (limited to 'fpicker/source/office/OfficeControlAccess.hxx')
-rw-r--r-- | fpicker/source/office/OfficeControlAccess.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.hxx b/fpicker/source/office/OfficeControlAccess.hxx index 34fc9a622d88..279e78b2ae29 100644 --- a/fpicker/source/office/OfficeControlAccess.hxx +++ b/fpicker/source/office/OfficeControlAccess.hxx @@ -50,11 +50,11 @@ namespace svt namespace InternalFilePickerElementIds { - static const sal_Int16 PUSHBUTTON_HELP = (sal_Int16)0x1000; - static const sal_Int16 TOOLBOXBUTOON_DEFAULT_LOCATION = (sal_Int16)0x1001; - static const sal_Int16 TOOLBOXBUTOON_LEVEL_UP = (sal_Int16)0x1002; - static const sal_Int16 TOOLBOXBUTOON_NEW_FOLDER = (sal_Int16)0x1003; - static const sal_Int16 FIXEDTEXT_CURRENTFOLDER = (sal_Int16)0x1004; + static const sal_Int16 PUSHBUTTON_HELP = sal_Int16(0x1000); + static const sal_Int16 TOOLBOXBUTOON_DEFAULT_LOCATION = sal_Int16(0x1001); + static const sal_Int16 TOOLBOXBUTOON_LEVEL_UP = sal_Int16(0x1002); + static const sal_Int16 TOOLBOXBUTOON_NEW_FOLDER = sal_Int16(0x1003); + static const sal_Int16 FIXEDTEXT_CURRENTFOLDER = sal_Int16(0x1004); } |