summaryrefslogtreecommitdiff
path: root/chart2/source/tools/TitleHelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/tools/TitleHelper.cxx')
-rw-r--r--chart2/source/tools/TitleHelper.cxx52
1 files changed, 1 insertions, 51 deletions
diff --git a/chart2/source/tools/TitleHelper.cxx b/chart2/source/tools/TitleHelper.cxx
index 48a33bf00b6d..24e55ccfc90e 100644
--- a/chart2/source/tools/TitleHelper.cxx
+++ b/chart2/source/tools/TitleHelper.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: TitleHelper.cxx,v $
- * $Revision: 1.10 $
+ * $Revision: 1.10.44.1 $
*
* This file is part of OpenOffice.org.
*
@@ -46,56 +46,6 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::chart2;
using ::com::sun::star::uno::Reference;
-namespace
-{
-
-rtl::OUString lcl_getIdentifierForTitle( TitleHelper::eTitleType nTitleIndex )
-{
- switch( nTitleIndex )
- {
- case TitleHelper::MAIN_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@main-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::SUB_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@sub-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::X_AXIS_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@xaxis-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::Y_AXIS_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@yaxis-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::Z_AXIS_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@zaxis-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::SECONDARY_X_AXIS_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@secondaryxaxis-title" ) );
- return m_aIdentifier;
- }
- case TitleHelper::SECONDARY_Y_AXIS_TITLE:
- {
- static rtl::OUString m_aIdentifier( C2U( "@secondaryyaxis-title" ) );
- return m_aIdentifier;
- }
- default:
- OSL_ENSURE( false, "Unsupported Title-Type requested" );
- return ::rtl::OUString();
- }
-}
-
-} //anonymous namespace
-
uno::Reference< XTitled > lcl_getTitleParentFromDiagram(
TitleHelper::eTitleType nTitleIndex
, const uno::Reference< XDiagram >& xDiagram )