summaryrefslogtreecommitdiff
path: root/include/vcl/msgbox.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/msgbox.hxx')
-rw-r--r--include/vcl/msgbox.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx
index 63eae2670470..5ac566f435d9 100644
--- a/include/vcl/msgbox.hxx
+++ b/include/vcl/msgbox.hxx
@@ -49,9 +49,9 @@ public:
MessBox( vcl::Window* pParent, WinBits nStyle,
const OUString& rTitle, const OUString& rMessage );
virtual ~MessBox();
- virtual void dispose() SAL_OVERRIDE;
+ virtual void dispose() override;
- virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
+ virtual void StateChanged( StateChangedType nStateChange ) override;
void SetMessText( const OUString& rText ) { maMessText = rText; }
const OUString& GetMessText() const { return maMessText; }
@@ -62,7 +62,7 @@ public:
void SetCheckBoxState( bool bCheck );
bool GetCheckBoxState() const;
- virtual Size GetOptimalSize() const SAL_OVERRIDE;
+ virtual Size GetOptimalSize() const override;
};
class VCL_DLLPUBLIC InfoBox : public MessBox