summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-07 12:27:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-07 12:36:01 +0100
commitb48874cd54deaacd858f9eaf0557d2b01bc25806 (patch)
treebe08c26d95d4c0e9f391d5f56af14169da8610c3 /sdext
parentcb6bc9bd880efe9efa842b05c6db508ac732f32f (diff)
loplugin:deletedspecial
Change-Id: I4b7583a69ddd8de0e428a0ce848c95f805433952
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterHelper.hxx33
1 files changed, 13 insertions, 20 deletions
diff --git a/sdext/source/presenter/PresenterHelper.hxx b/sdext/source/presenter/PresenterHelper.hxx
index 3a43775c5e8a..52d07120f0b3 100644
--- a/sdext/source/presenter/PresenterHelper.hxx
+++ b/sdext/source/presenter/PresenterHelper.hxx
@@ -24,43 +24,36 @@
#include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/presentation/XSlideShowController.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
-#include <boost/noncopyable.hpp>
namespace sdext { namespace presenter {
/** Collection of helper functions that do not fit in anywhere else.
Provide access to frequently used strings of the drawing framework.
*/
-class PresenterHelper
- : ::boost::noncopyable
+namespace PresenterHelper
{
-public:
- static const OUString msPaneURLPrefix;
- static const OUString msCenterPaneURL;
- static const OUString msFullScreenPaneURL;
+ extern const OUString msPaneURLPrefix;
+ extern const OUString msCenterPaneURL;
+ extern const OUString msFullScreenPaneURL;
- static const OUString msViewURLPrefix;
- static const OUString msPresenterScreenURL;
- static const OUString msSlideSorterURL;
+ extern const OUString msViewURLPrefix;
+ extern const OUString msPresenterScreenURL;
+ extern const OUString msSlideSorterURL;
- static const OUString msResourceActivationEvent;
- static const OUString msResourceDeactivationEvent;
+ extern const OUString msResourceActivationEvent;
+ extern const OUString msResourceDeactivationEvent;
- static const OUString msDefaultPaneStyle;
- static const OUString msDefaultViewStyle;
+ extern const OUString msDefaultPaneStyle;
+ extern const OUString msDefaultViewStyle;
/** Return the slide show controller of a running presentation that has
the same document as the given framework controller.
@return
When no presentation is running this method returns an empty reference.
*/
- static css::uno::Reference<css::presentation::XSlideShowController> GetSlideShowController (
+ css::uno::Reference<css::presentation::XSlideShowController> GetSlideShowController (
const css::uno::Reference<css::frame::XController>& rxController);
-
-private:
- PresenterHelper (void);
- ~PresenterHelper (void);
-};
+}
} } // end of namespace presenter