From 876e13576bf112786172fdc113363f3fe54f19f7 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 19 Apr 2017 12:21:18 +0200 Subject: sw: resolve m_pCursorStack overload Both SwCursorShell and SwWrtShell have a m_pCursorStack member, which is confusing gdb. Change-Id: Ie4674fa08eafcfae5273740d7ed8271614f311ab --- sw/inc/crsrsh.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/inc/crsrsh.hxx') diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx index 92cd91a466b2..122cda1406a8 100644 --- a/sw/inc/crsrsh.hxx +++ b/sw/inc/crsrsh.hxx @@ -177,7 +177,7 @@ private: Link m_aGrfArrivedLnk; ///< Link calls to UI if a graphic is arrived SwShellCursor* m_pCurrentCursor; ///< current cursor - SwShellCursor* m_pCursorStack; ///< stack for the cursor + SwShellCursor* m_pStackCursor; ///< stack for the cursor SwVisibleCursor *m_pVisibleCursor; ///< the visible cursor SwBlockCursor *m_pBlockCursor; ///< interface of cursor for block (=rectangular) selection @@ -856,7 +856,7 @@ inline SwCursor* SwCursorShell::GetSwCursor() const return static_cast(GetCursor()); } -inline SwPaM* SwCursorShell::GetStackCursor() const { return m_pCursorStack; } +inline SwPaM* SwCursorShell::GetStackCursor() const { return m_pStackCursor; } inline void SwCursorShell::SetMark() { m_pCurrentCursor->SetMark(); } -- cgit