summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cui/source/tabpages/connect.cxx2
-rw-r--r--include/svx/connctrl.hxx2
-rw-r--r--svx/source/dialog/connctrl.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/connect.cxx b/cui/source/tabpages/connect.cxx
index 80ca0fa25e33..0f1af8106c76 100644
--- a/cui/source/tabpages/connect.cxx
+++ b/cui/source/tabpages/connect.cxx
@@ -463,7 +463,7 @@ void SvxConnectionPage::ChangeAttrHdl_Impl(void* p)
if( p == m_pLbType )
{
// get the number of line displacements
- sal_uInt16 nCount = m_pCtlPreview->GetLineDeltaAnz();
+ sal_uInt16 nCount = m_pCtlPreview->GetLineDeltaCount();
m_pFtLine3->Enable( nCount > 2 );
m_pMtrFldLine3->Enable( nCount > 2 );
diff --git a/include/svx/connctrl.hxx b/include/svx/connctrl.hxx
index e74b480c9792..b9b388e533aa 100644
--- a/include/svx/connctrl.hxx
+++ b/include/svx/connctrl.hxx
@@ -54,7 +54,7 @@ public:
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
void SetAttributes( const SfxItemSet& rInAttrs );
- sal_uInt16 GetLineDeltaAnz();
+ sal_uInt16 GetLineDeltaCount();
void Construct();
void SetView( const SdrView* pSdrView ) { pView = pSdrView; }
diff --git a/svx/source/dialog/connctrl.cxx b/svx/source/dialog/connctrl.cxx
index ff9e3bd8d3a3..79e01c463e94 100644
--- a/svx/source/dialog/connctrl.cxx
+++ b/svx/source/dialog/connctrl.cxx
@@ -246,7 +246,7 @@ void SvxXConnectionPreview::SetAttributes( const SfxItemSet& rInAttrs )
// Get number of lines which are offset based on the preview object
-sal_uInt16 SvxXConnectionPreview::GetLineDeltaAnz()
+sal_uInt16 SvxXConnectionPreview::GetLineDeltaCount()
{
const SfxItemSet& rSet = pEdgeObj->GetMergedItemSet();
sal_uInt16 nCount(0);