Kaydet (Commit) b48874cd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: I4b7583a69ddd8de0e428a0ce848c95f805433952
üst cb6bc9bd
...@@ -24,43 +24,36 @@ ...@@ -24,43 +24,36 @@
#include <com/sun/star/frame/XController.hpp> #include <com/sun/star/frame/XController.hpp>
#include <com/sun/star/presentation/XSlideShowController.hpp> #include <com/sun/star/presentation/XSlideShowController.hpp>
#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XComponentContext.hpp>
#include <boost/noncopyable.hpp>
namespace sdext { namespace presenter { namespace sdext { namespace presenter {
/** Collection of helper functions that do not fit in anywhere else. /** Collection of helper functions that do not fit in anywhere else.
Provide access to frequently used strings of the drawing framework. Provide access to frequently used strings of the drawing framework.
*/ */
class PresenterHelper namespace PresenterHelper
: ::boost::noncopyable
{ {
public: extern const OUString msPaneURLPrefix;
static const OUString msPaneURLPrefix; extern const OUString msCenterPaneURL;
static const OUString msCenterPaneURL; extern const OUString msFullScreenPaneURL;
static const OUString msFullScreenPaneURL;
static const OUString msViewURLPrefix; extern const OUString msViewURLPrefix;
static const OUString msPresenterScreenURL; extern const OUString msPresenterScreenURL;
static const OUString msSlideSorterURL; extern const OUString msSlideSorterURL;
static const OUString msResourceActivationEvent; extern const OUString msResourceActivationEvent;
static const OUString msResourceDeactivationEvent; extern const OUString msResourceDeactivationEvent;
static const OUString msDefaultPaneStyle; extern const OUString msDefaultPaneStyle;
static const OUString msDefaultViewStyle; extern const OUString msDefaultViewStyle;
/** Return the slide show controller of a running presentation that has /** Return the slide show controller of a running presentation that has
the same document as the given framework controller. the same document as the given framework controller.
@return @return
When no presentation is running this method returns an empty reference. 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); const css::uno::Reference<css::frame::XController>& rxController);
}
private:
PresenterHelper (void);
~PresenterHelper (void);
};
} } // end of namespace presenter } } // end of namespace presenter
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment