diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-14 16:55:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-16 14:19:12 +0000 |
commit | 432e3162e6cf4e90137699d45934b5db56a89aaf (patch) | |
tree | a9e0e22a20591dde6f0a14aa8861ad0ce8c2b28f /fpicker/source/win32/filepicker/dialogcustomcontrols.hxx | |
parent | 5f2bf2ce3ce2b5614ceaa454bffb3ce0623ce48a (diff) |
clang-cl loplugin: fpicker
Change-Id: Ib19175affd48610fc164a996d609b369256d4f72
Reviewed-on: https://gerrit.libreoffice.org/29865
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'fpicker/source/win32/filepicker/dialogcustomcontrols.hxx')
-rw-r--r-- | fpicker/source/win32/filepicker/dialogcustomcontrols.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fpicker/source/win32/filepicker/dialogcustomcontrols.hxx b/fpicker/source/win32/filepicker/dialogcustomcontrols.hxx index e6dcb732c184..b06a773b83f2 100644 --- a/fpicker/source/win32/filepicker/dialogcustomcontrols.hxx +++ b/fpicker/source/win32/filepicker/dialogcustomcontrols.hxx @@ -36,8 +36,8 @@ class CDummyCustomControl : public CCustomControl public: CDummyCustomControl(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL Align(); - virtual void SAL_CALL SetFont(HFONT hFont); + virtual void SAL_CALL Align() override; + virtual void SAL_CALL SetFont(HFONT hFont) override; }; @@ -46,7 +46,7 @@ class CDialogCustomControlBase : public CCustomControl protected: CDialogCustomControlBase(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL SetFont(HFONT hFont); + virtual void SAL_CALL SetFont(HFONT hFont) override; // aligns the specific control class to a reference // buddy @@ -64,7 +64,7 @@ class CStaticCustomControl : public CDialogCustomControlBase public: CStaticCustomControl(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL Align(); + virtual void SAL_CALL Align() override; }; @@ -73,7 +73,7 @@ class CPushButtonCustomControl : public CDialogCustomControlBase public: CPushButtonCustomControl(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL Align(); + virtual void SAL_CALL Align() override; }; @@ -82,7 +82,7 @@ class CComboboxCustomControl : public CDialogCustomControlBase public: CComboboxCustomControl(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL Align(); + virtual void SAL_CALL Align() override; }; @@ -91,7 +91,7 @@ class CCheckboxCustomControl : public CDialogCustomControlBase public: CCheckboxCustomControl(HWND aControlHandle, HWND aParentHandle); - virtual void SAL_CALL Align(); + virtual void SAL_CALL Align() override; }; #endif |