summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/warnbox.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/inc/warnbox.hxx')
-rw-r--r--sc/source/ui/inc/warnbox.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/warnbox.hxx b/sc/source/ui/inc/warnbox.hxx
index d06257872971..62981f4296aa 100644
--- a/sc/source/ui/inc/warnbox.hxx
+++ b/sc/source/ui/inc/warnbox.hxx
@@ -36,7 +36,7 @@ public:
/** Opens dialog if IsDialogEnabled() returns true.
@descr If after executing the dialog the checkbox "Do not show again" is set,
the method DisableDialog() will be called. */
- virtual sal_Int16 Execute();
+ virtual sal_Int16 Execute() SAL_OVERRIDE;
/** Called before executing the dialog. If this method returns false, the dialog will not be opened. */
virtual bool IsDialogEnabled();
@@ -54,9 +54,9 @@ public:
ScReplaceWarnBox( Window* pParent );
/** Reads the configuration key "ReplaceCellsWarning". */
- virtual bool IsDialogEnabled();
+ virtual bool IsDialogEnabled() SAL_OVERRIDE;
/** Sets the configuration key "ReplaceCellsWarning" to false. */
- virtual void DisableDialog();
+ virtual void DisableDialog() SAL_OVERRIDE;
};