diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-04-19 12:21:18 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-04-19 13:02:18 +0200 |
commit | 876e13576bf112786172fdc113363f3fe54f19f7 (patch) | |
tree | e8d0aeece5ad790408d97e1dd2b4542ee95d5d0c /sw/inc | |
parent | 6827da5052bfe975a3b34af8dfa8af75d41e904c (diff) |
sw: resolve m_pCursorStack overload
Both SwCursorShell and SwWrtShell have a m_pCursorStack member, which is
confusing gdb.
Change-Id: Ie4674fa08eafcfae5273740d7ed8271614f311ab
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/crsrsh.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
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<SwCursorShell&,void> 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<SwCursor*>(GetCursor()); } -inline SwPaM* SwCursorShell::GetStackCursor() const { return m_pCursorStack; } +inline SwPaM* SwCursorShell::GetStackCursor() const { return m_pStackCursor; } inline void SwCursorShell::SetMark() { m_pCurrentCursor->SetMark(); } |