summaryrefslogtreecommitdiff
path: root/chart2/source/model
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-27 08:11:10 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-27 14:00:28 +0200
commit92b447876d1d9c10fba17e5f527332fe6ec07fb9 (patch)
tree92714b5d8db4fbf2d7a56aca8be0450269397be4 /chart2/source/model
parente6ff6f9a71ec88747e3cf8165fb72a96b57f2e99 (diff)
css already means ::com::sun::star
Change-Id: I48d7b746d7cc49246743c62480b0d225d2519342
Diffstat (limited to 'chart2/source/model')
-rw-r--r--chart2/source/model/main/FormattedString.hxx48
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.cxx2
-rw-r--r--chart2/source/model/template/ChartTypeTemplate.hxx2
-rw-r--r--chart2/source/model/template/GL3DBarChartTypeTemplate.cxx4
-rw-r--r--chart2/source/model/template/GL3DBarChartTypeTemplate.hxx4
5 files changed, 30 insertions, 30 deletions
diff --git a/chart2/source/model/main/FormattedString.hxx b/chart2/source/model/main/FormattedString.hxx
index ade1c38f7299..20adb06b7028 100644
--- a/chart2/source/model/main/FormattedString.hxx
+++ b/chart2/source/model/main/FormattedString.hxx
@@ -36,11 +36,11 @@ namespace chart
namespace impl
{
typedef ::cppu::WeakImplHelper5<
- ::css::chart2::XFormattedString2,
- ::css::lang::XServiceInfo,
- ::css::util::XCloneable,
- ::css::util::XModifyBroadcaster,
- ::css::util::XModifyListener >
+ css::chart2::XFormattedString2,
+ css::lang::XServiceInfo,
+ css::util::XCloneable,
+ css::util::XModifyBroadcaster,
+ css::util::XModifyListener >
FormattedString_Base;
}
@@ -50,8 +50,8 @@ class FormattedString :
public ::property::OPropertySet
{
public:
- FormattedString( ::css::uno::Reference<
- ::css::uno::XComponentContext > const & xContext );
+ FormattedString( css::uno::Reference<
+ css::uno::XComponentContext > const & xContext );
virtual ~FormattedString();
/// declare XServiceInfo methods
@@ -82,43 +82,43 @@ protected:
// ____ XFormattedString ____
virtual OUString SAL_CALL getString()
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setString( const OUString& String )
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ OPropertySet ____
- virtual ::css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
- throw(::css::beans::UnknownPropertyException) SAL_OVERRIDE;
+ virtual css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
+ throw(css::beans::UnknownPropertyException) SAL_OVERRIDE;
// ____ OPropertySet ____
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
// ____ XPropertySet ____
- virtual ::css::uno::Reference< ::css::beans::XPropertySetInfo > SAL_CALL
+ virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
getPropertySetInfo()
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ XCloneable ____
- virtual ::css::uno::Reference< ::css::util::XCloneable > SAL_CALL createClone()
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone()
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ XModifyBroadcaster ____
virtual void SAL_CALL addModifyListener(
- const ::css::uno::Reference< ::css::util::XModifyListener >& aListener )
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::uno::Reference< css::util::XModifyListener >& aListener )
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeModifyListener(
- const ::css::uno::Reference< ::css::util::XModifyListener >& aListener )
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::uno::Reference< css::util::XModifyListener >& aListener )
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ XModifyListener ____
virtual void SAL_CALL modified(
- const ::css::lang::EventObject& aEvent )
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::lang::EventObject& aEvent )
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ XEventListener (base of XModifyListener) ____
virtual void SAL_CALL disposing(
- const ::css::lang::EventObject& Source )
- throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ const css::lang::EventObject& Source )
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// ____ OPropertySet ____
virtual void firePropertyChangeEvent() SAL_OVERRIDE;
@@ -129,7 +129,7 @@ protected:
private:
OUString m_aString;
- ::css::uno::Reference< ::css::util::XModifyListener > m_xModifyEventForwarder;
+ css::uno::Reference< css::util::XModifyListener > m_xModifyEventForwarder;
};
} // namespace chart
diff --git a/chart2/source/model/template/ChartTypeTemplate.cxx b/chart2/source/model/template/ChartTypeTemplate.cxx
index e1296cfc9d3f..1940305d5998 100644
--- a/chart2/source/model/template/ChartTypeTemplate.cxx
+++ b/chart2/source/model/template/ChartTypeTemplate.cxx
@@ -179,7 +179,7 @@ uno::Reference< XDiagram > SAL_CALL ChartTypeTemplate::createDiagramByDataSource
}
sal_Bool SAL_CALL ChartTypeTemplate::supportsCategories()
- throw (::css::uno::RuntimeException, ::std::exception)
+ throw (css::uno::RuntimeException, ::std::exception)
{
return sal_True;
}
diff --git a/chart2/source/model/template/ChartTypeTemplate.hxx b/chart2/source/model/template/ChartTypeTemplate.hxx
index b373ac21e0ff..39f3e0c5e742 100644
--- a/chart2/source/model/template/ChartTypeTemplate.hxx
+++ b/chart2/source/model/template/ChartTypeTemplate.hxx
@@ -92,7 +92,7 @@ protected:
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
/// denotes if the chart needs categories at the first scale
virtual sal_Bool SAL_CALL supportsCategories()
- throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
virtual void SAL_CALL changeDiagram(
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
diff --git a/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx b/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx
index 223999748c6e..4440db517071 100644
--- a/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx
+++ b/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx
@@ -148,7 +148,7 @@ sal_Bool SAL_CALL GL3DBarChartTypeTemplate::matchesTemplate(
uno::Reference<chart2::XChartType>
GL3DBarChartTypeTemplate::getChartTypeForNewSeries( const uno::Sequence<uno::Reference<chart2::XChartType> >& /*xOldChartTypes*/ )
- throw (::css::uno::RuntimeException, ::std::exception)
+ throw (css::uno::RuntimeException, ::std::exception)
{
uno::Reference<chart2::XChartType> xResult;
@@ -180,7 +180,7 @@ GL3DBarChartTypeTemplate::getChartTypeForNewSeries( const uno::Sequence<uno::Ref
}
sal_Bool GL3DBarChartTypeTemplate::supportsCategories()
- throw (::css::uno::RuntimeException, ::std::exception)
+ throw (css::uno::RuntimeException, ::std::exception)
{
return false;
}
diff --git a/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx b/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx
index f2957536e8c4..ce81771e8efa 100644
--- a/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx
+++ b/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx
@@ -45,10 +45,10 @@ public:
virtual css::uno::Reference<css::chart2::XChartType> SAL_CALL
getChartTypeForNewSeries( const css::uno::Sequence<css::uno::Reference<css::chart2::XChartType> >& xOldChartTypes )
- throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsCategories()
- throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE;
// OPropertySet
virtual css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const