summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterProtocolHandler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterProtocolHandler.cxx')
-rw-r--r--sdext/source/presenter/PresenterProtocolHandler.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sdext/source/presenter/PresenterProtocolHandler.cxx b/sdext/source/presenter/PresenterProtocolHandler.cxx
index 3f9c44c8f433..c03be4882b61 100644
--- a/sdext/source/presenter/PresenterProtocolHandler.cxx
+++ b/sdext/source/presenter/PresenterProtocolHandler.cxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -173,7 +173,7 @@ namespace {
};
} // end of anonymous namespace
-
+
namespace {
typedef ::cppu::WeakComponentImplHelper2 <
@@ -212,24 +212,24 @@ public:
const css::uno::Reference<css::frame::XStatusListener>& rxListener,
const css::util::URL& rURL)
throw(css::uno::RuntimeException);
-
+
virtual void SAL_CALL removeStatusListener (
const css::uno::Reference<css::frame::XStatusListener>& rxListener,
const css::util::URL& rURL)
throw(css::uno::RuntimeException);
-
+
// document::XEventListener
virtual void SAL_CALL notifyEvent (const css::document::EventObject& rEvent)
throw(css::uno::RuntimeException);
-
+
// lang::XEventListener
virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent)
throw(css::uno::RuntimeException);
-
+
private:
OUString msURLPath;
::boost::scoped_ptr<Command> mpCommand;
@@ -242,7 +242,7 @@ private:
const OUString& rsURLPath,
const ::rtl::Reference<PresenterController>& rpPresenterController);
virtual ~Dispatch (void);
-
+
void ThrowIfDisposed (void) const throw (css::lang::DisposedException);
};
@@ -383,7 +383,7 @@ void PresenterProtocolHandler::ThrowIfDisposed (void) const
-
+
//===== PresenterProtocolHandler::Dispatch ====================================
Reference<frame::XDispatch> PresenterProtocolHandler::Dispatch::Create (
@@ -475,12 +475,12 @@ Command* PresenterProtocolHandler::Dispatch::CreateCommand (
if (rsURLPath == A2S("ShowNotes"))
return new SetNotesViewCommand(true, rpPresenterController);
break;
-
+
case sal_Char('S'):
if (rsURLPath == A2S("ShowSlideSorter"))
return new SetSlideSorterCommand(true, rpPresenterController);
break;
-
+
case sal_Char('H'):
if (rsURLPath == A2S("ShowHelp"))
return new SetHelpViewCommand(true, rpPresenterController);
@@ -571,7 +571,7 @@ void SAL_CALL PresenterProtocolHandler::Dispatch::addStatusListener(
else
throw RuntimeException();
}
-
+
@@ -613,7 +613,7 @@ void PresenterProtocolHandler::Dispatch::ThrowIfDisposed (void) const
-
+
//----- document::XEventListener ----------------------------------------------
void SAL_CALL PresenterProtocolHandler::Dispatch::notifyEvent (
@@ -961,7 +961,7 @@ NotesFontSizeCommand::NotesFontSizeCommand(
{
if (mpPresenterController.get() == NULL)
return NULL;
-
+
PresenterPaneContainer::SharedPaneDescriptor pDescriptor (
mpPresenterController->GetPaneContainer()->FindViewURL(
PresenterViewFactory::msNotesViewURL));