summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-02 09:01:37 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-02 09:01:37 +0200
commita808497dbb9e9022bf04c984be19176f99fa3683 (patch)
tree05c57dc31b9c824dacbccd689ef52654fc6b42da /sdext
parent83810a61bab4fe079de3539dc3489b008e776eaf (diff)
drop prefix from ::css
as css is already ::com::sun::star Change-Id: I86b43843e4b74f990b6e05dee37184a002072d12
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterConfigurationAccess.hxx2
-rw-r--r--sdext/source/presenter/PresenterFrameworkObserver.hxx2
-rw-r--r--sdext/source/presenter/PresenterSprite.cxx4
-rw-r--r--sdext/source/presenter/PresenterSprite.hxx8
-rw-r--r--sdext/source/presenter/PresenterTextView.cxx2
-rw-r--r--sdext/source/presenter/PresenterTextView.hxx4
-rw-r--r--sdext/source/presenter/PresenterToolBar.hxx2
-rw-r--r--sdext/source/presenter/PresenterWindowManager.hxx2
8 files changed, 13 insertions, 13 deletions
diff --git a/sdext/source/presenter/PresenterConfigurationAccess.hxx b/sdext/source/presenter/PresenterConfigurationAccess.hxx
index c8a9a9a6267e..ee2035a2dab4 100644
--- a/sdext/source/presenter/PresenterConfigurationAccess.hxx
+++ b/sdext/source/presenter/PresenterConfigurationAccess.hxx
@@ -126,7 +126,7 @@ public:
const ::std::vector<css::uno::Any>&) > ItemProcessor;
typedef ::boost::function<void(
const ::rtl::OUString&,
- const ::css::uno::Reference<css::beans::XPropertySet>&) > PropertySetProcessor;
+ const css::uno::Reference<css::beans::XPropertySet>&) > PropertySetProcessor;
/** Execute a functor for all elements of the given container.
@param rxContainer
diff --git a/sdext/source/presenter/PresenterFrameworkObserver.hxx b/sdext/source/presenter/PresenterFrameworkObserver.hxx
index 659beddcb29f..57153bdcf188 100644
--- a/sdext/source/presenter/PresenterFrameworkObserver.hxx
+++ b/sdext/source/presenter/PresenterFrameworkObserver.hxx
@@ -58,7 +58,7 @@ public:
private:
::rtl::OUString msEventType;
- ::css::uno::Reference<css::drawing::framework::XConfigurationController> mxConfigurationController;
+ css::uno::Reference<css::drawing::framework::XConfigurationController> mxConfigurationController;
Predicate maPredicate;
Action maAction;
diff --git a/sdext/source/presenter/PresenterSprite.cxx b/sdext/source/presenter/PresenterSprite.cxx
index 01f784117e70..f66bcddd35ed 100644
--- a/sdext/source/presenter/PresenterSprite.cxx
+++ b/sdext/source/presenter/PresenterSprite.cxx
@@ -54,7 +54,7 @@ PresenterSprite::~PresenterSprite (void)
}
void PresenterSprite::SetFactory (
- const ::css::uno::Reference<css::rendering::XSpriteCanvas>& rxSpriteFactory)
+ const css::uno::Reference<css::rendering::XSpriteCanvas>& rxSpriteFactory)
{
if (mxSpriteFactory != rxSpriteFactory)
{
@@ -65,7 +65,7 @@ void PresenterSprite::SetFactory (
}
}
-::css::uno::Reference<css::rendering::XCanvas> PresenterSprite::GetCanvas (void)
+css::uno::Reference<css::rendering::XCanvas> PresenterSprite::GetCanvas (void)
{
ProvideSprite();
if (mxSprite.is())
diff --git a/sdext/source/presenter/PresenterSprite.hxx b/sdext/source/presenter/PresenterSprite.hxx
index ca60f9711105..0db6b44e721e 100644
--- a/sdext/source/presenter/PresenterSprite.hxx
+++ b/sdext/source/presenter/PresenterSprite.hxx
@@ -45,9 +45,9 @@ public:
It is also used to call updateScreen() at (wrapped by the Update() method).
*/
void SetFactory (
- const ::css::uno::Reference<css::rendering::XSpriteCanvas>& rxSpriteFactory);
+ const css::uno::Reference<css::rendering::XSpriteCanvas>& rxSpriteFactory);
- ::css::uno::Reference<css::rendering::XCanvas> GetCanvas (void);
+ css::uno::Reference<css::rendering::XCanvas> GetCanvas (void);
void Show (void);
void Hide (void);
@@ -58,8 +58,8 @@ public:
void Update (void);
private:
- ::css::uno::Reference<css::rendering::XSpriteCanvas> mxSpriteFactory;
- ::css::uno::Reference<css::rendering::XCustomSprite> mxSprite;
+ css::uno::Reference<css::rendering::XSpriteCanvas> mxSpriteFactory;
+ css::uno::Reference<css::rendering::XCustomSprite> mxSprite;
css::geometry::RealSize2D maSize;
css::geometry::RealPoint2D maLocation;
bool mbIsVisible;
diff --git a/sdext/source/presenter/PresenterTextView.cxx b/sdext/source/presenter/PresenterTextView.cxx
index f06169c93625..2be9a4b9b3b2 100644
--- a/sdext/source/presenter/PresenterTextView.cxx
+++ b/sdext/source/presenter/PresenterTextView.cxx
@@ -64,7 +64,7 @@ namespace sdext { namespace presenter {
PresenterTextView::PresenterTextView (
const Reference<XComponentContext>& rxContext,
const Reference<rendering::XCanvas>& rxCanvas,
- const ::boost::function<void(const ::css::awt::Rectangle&)>& rInvalidator)
+ const ::boost::function<void(const css::awt::Rectangle&)>& rInvalidator)
: mxCanvas(rxCanvas),
mbDoOuput(true),
mxBreakIterator(),
diff --git a/sdext/source/presenter/PresenterTextView.hxx b/sdext/source/presenter/PresenterTextView.hxx
index aeac34c76977..5eba5bfb1457 100644
--- a/sdext/source/presenter/PresenterTextView.hxx
+++ b/sdext/source/presenter/PresenterTextView.hxx
@@ -222,7 +222,7 @@ public:
PresenterTextView (
const css::uno::Reference<css::uno::XComponentContext>& rxContext,
const css::uno::Reference<css::rendering::XCanvas>& rxCanvas,
- const ::boost::function<void(const ::css::awt::Rectangle&)>& rInvalidator);
+ const ::boost::function<void(const css::awt::Rectangle&)>& rInvalidator);
void SetText (const css::uno::Reference<css::text::XText>& rxText);
void SetTextChangeBroadcaster (const ::boost::function<void(void)>& rBroadcaster);
@@ -267,7 +267,7 @@ private:
SharedPresenterTextCaret mpCaret;
double mnLeftOffset;
double mnTopOffset;
- const ::boost::function<void(const ::css::awt::Rectangle&)> maInvalidator;
+ const ::boost::function<void(const css::awt::Rectangle&)> maInvalidator;
bool mbIsFormatPending;
sal_Int32 mnCharacterCount;
::boost::function<void(void)> maTextChangeBroadcaster;
diff --git a/sdext/source/presenter/PresenterToolBar.hxx b/sdext/source/presenter/PresenterToolBar.hxx
index 1158b84a22e2..d289394067a9 100644
--- a/sdext/source/presenter/PresenterToolBar.hxx
+++ b/sdext/source/presenter/PresenterToolBar.hxx
@@ -211,7 +211,7 @@ private:
const bool bMouseDown=false);
void ProcessEntry (
- const ::css::uno::Reference<css::beans::XPropertySet>& rProperties,
+ const css::uno::Reference<css::beans::XPropertySet>& rProperties,
Context& rContext);
/** This method throws a DisposedException when the object has already been
diff --git a/sdext/source/presenter/PresenterWindowManager.hxx b/sdext/source/presenter/PresenterWindowManager.hxx
index efbf895c6b77..02c45fee05c0 100644
--- a/sdext/source/presenter/PresenterWindowManager.hxx
+++ b/sdext/source/presenter/PresenterWindowManager.hxx
@@ -68,7 +68,7 @@ class PresenterWindowManager
{
public:
PresenterWindowManager (
- const ::css::uno::Reference<css::uno::XComponentContext>& rxContext,
+ const css::uno::Reference<css::uno::XComponentContext>& rxContext,
const ::rtl::Reference<PresenterPaneContainer>& rpPaneContainer,
const ::rtl::Reference<PresenterController>& rpPresenterController);
virtual ~PresenterWindowManager (void);