summaryrefslogtreecommitdiff
path: root/sd
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 /sd
parent83810a61bab4fe079de3539dc3489b008e776eaf (diff)
drop prefix from ::css
as css is already ::com::sun::star Change-Id: I86b43843e4b74f990b6e05dee37184a002072d12
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx4
-rw-r--r--sd/source/ui/framework/module/ToolBarModule.hxx2
-rw-r--r--sd/source/ui/framework/module/ViewTabBarModule.hxx2
-rw-r--r--sd/source/ui/inc/framework/ConfigurationController.hxx4
-rw-r--r--sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx2
-rw-r--r--sd/source/ui/presenter/SlideRenderer.hxx8
6 files changed, 11 insertions, 11 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
index 288ad97f392b..1858b69f860c 100644
--- a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
+++ b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
@@ -97,8 +97,8 @@ public:
*/
void NotifyListeners (
const ::rtl::OUString& rsEventType,
- const ::css::uno::Reference<css::drawing::framework::XResourceId>& rxResourceId,
- const ::css::uno::Reference<css::drawing::framework::XResource>& rxResourceObject);
+ const css::uno::Reference<css::drawing::framework::XResourceId>& rxResourceId,
+ const css::uno::Reference<css::drawing::framework::XResource>& rxResourceObject);
/** Call all listeners and inform them that the
ConfigurationController is being disposed. When this method returns
diff --git a/sd/source/ui/framework/module/ToolBarModule.hxx b/sd/source/ui/framework/module/ToolBarModule.hxx
index 8ba51892ae26..d0ab557c9e57 100644
--- a/sd/source/ui/framework/module/ToolBarModule.hxx
+++ b/sd/source/ui/framework/module/ToolBarModule.hxx
@@ -40,7 +40,7 @@ namespace sd { namespace framework {
namespace {
typedef ::cppu::WeakComponentImplHelper1 <
- ::css::drawing::framework::XConfigurationChangeListener
+ css::drawing::framework::XConfigurationChangeListener
> ToolBarModuleInterfaceBase;
}
diff --git a/sd/source/ui/framework/module/ViewTabBarModule.hxx b/sd/source/ui/framework/module/ViewTabBarModule.hxx
index f06870ff29bf..26ecdca8c9d1 100644
--- a/sd/source/ui/framework/module/ViewTabBarModule.hxx
+++ b/sd/source/ui/framework/module/ViewTabBarModule.hxx
@@ -32,7 +32,7 @@
namespace {
typedef ::cppu::WeakComponentImplHelper1 <
- ::css::drawing::framework::XConfigurationChangeListener
+ css::drawing::framework::XConfigurationChangeListener
> ViewTabBarModuleInterfaceBase;
} // end of anonymous namespace.
diff --git a/sd/source/ui/inc/framework/ConfigurationController.hxx b/sd/source/ui/inc/framework/ConfigurationController.hxx
index 1d07e178922b..ea40b2d20bfc 100644
--- a/sd/source/ui/inc/framework/ConfigurationController.hxx
+++ b/sd/source/ui/inc/framework/ConfigurationController.hxx
@@ -42,8 +42,8 @@
namespace {
typedef ::cppu::WeakComponentImplHelper2 <
- ::css::drawing::framework::XConfigurationController,
- ::css::lang::XInitialization
+ css::drawing::framework::XConfigurationController,
+ css::lang::XInitialization
> ConfigurationControllerInterfaceBase;
} // end of anonymous namespace.
diff --git a/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx b/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx
index 239f57188494..4681f2e788bc 100644
--- a/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx
+++ b/sd/source/ui/inc/tools/SdGlobalResourceContainer.hxx
@@ -80,7 +80,7 @@ public:
(when the sd modules is unloaded) is done by a) calling dispose()
when the XComponent is supported and by b) releasing the reference.
*/
- void AddResource (const ::css::uno::Reference<css::uno::XInterface>& rxResource);
+ void AddResource (const css::uno::Reference<css::uno::XInterface>& rxResource);
protected:
friend class ::SdModule;
diff --git a/sd/source/ui/presenter/SlideRenderer.hxx b/sd/source/ui/presenter/SlideRenderer.hxx
index 1638d0067f99..9625f4618fb8 100644
--- a/sd/source/ui/presenter/SlideRenderer.hxx
+++ b/sd/source/ui/presenter/SlideRenderer.hxx
@@ -61,16 +61,16 @@ public:
// XSlideRenderer
virtual css::uno::Reference<css::awt::XBitmap> SAL_CALL createPreview (
- const ::css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
+ const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
sal_Int16 nSuperSampleFactor)
throw (css::uno::RuntimeException);
virtual css::uno::Reference<css::rendering::XBitmap> SAL_CALL createPreviewForCanvas (
- const ::css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
+ const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
sal_Int16 nSuperSampleFactor,
- const ::css::uno::Reference<css::rendering::XCanvas>& rxCanvas)
+ const css::uno::Reference<css::rendering::XCanvas>& rxCanvas)
throw (css::uno::RuntimeException);
virtual css::awt::Size SAL_CALL calculatePreviewSize (
@@ -82,7 +82,7 @@ private:
PreviewRenderer maPreviewRenderer;
BitmapEx CreatePreview (
- const ::css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
+ const css::uno::Reference<css::drawing::XDrawPage>& rxSlide,
const css::awt::Size& rMaximumPreviewPixelSize,
sal_Int16 nSuperSampleFactor)
throw (css::uno::RuntimeException);