summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
index 65e3f8c4404a..4dcf946a41da 100644
--- a/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
+++ b/desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx
@@ -165,20 +165,20 @@ public:
// XCommandEnvironment
virtual uno::Reference< task::XInteractionHandler > SAL_CALL getInteractionHandler()
- throw ( uno::RuntimeException, std::exception );
+ throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual uno::Reference< ucb::XProgressHandler > SAL_CALL getProgressHandler()
- throw ( uno::RuntimeException, std::exception );
+ throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XInteractionHandler
virtual void SAL_CALL handle( uno::Reference< task::XInteractionRequest > const & xRequest )
- throw ( uno::RuntimeException, std::exception );
+ throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XProgressHandler
virtual void SAL_CALL push( uno::Any const & Status )
- throw ( uno::RuntimeException, std::exception );
+ throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL update( uno::Any const & Status )
- throw ( uno::RuntimeException, std::exception );
- virtual void SAL_CALL pop() throw ( uno::RuntimeException, std::exception );
+ throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ virtual void SAL_CALL pop() throw ( uno::RuntimeException, std::exception ) SAL_OVERRIDE;
};
@@ -237,7 +237,7 @@ public:
private:
virtual ~Thread();
- virtual void execute();
+ virtual void execute() SAL_OVERRIDE;
void _insert(const TExtensionCmd& rExtCmd);