summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorJonathan Clark <jonathan@libreoffice.org>2024-09-10 09:06:51 -0600
committerJonathan Clark <jonathan@libreoffice.org>2024-09-12 05:04:53 +0200
commit3d9b8701cb1751e4139ffa24f72bb836eb877fd1 (patch)
tree4095a293207548549b5cea4d07f864b48e56d3d7 /sw/inc
parente0a5b29f653a314727e23489a3e98daff8386ff6 (diff)
tdf#107184 sw: Added base text group feature to Asian Phonetic Guide
This change adds a new button, Group, to the Asian Phonetic Guide. Clicking on this button will automatically merge all base text runs into a single base text run. Change-Id: I8bc2881f0c31d501f8a347156145a483bb4c96cb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173241 Reviewed-by: Jonathan Clark <jonathan@libreoffice.org> Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/doc.hxx2
-rw-r--r--sw/inc/rubylist.hxx1
2 files changed, 1 insertions, 2 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index 1a4fff14b4c2..0274dd4976be 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -1591,7 +1591,7 @@ public:
// Interface for the list of Ruby - texts/attributes
static sal_uInt16 FillRubyList( const SwPaM& rPam, SwRubyList& rList );
- void SetRubyList( const SwPaM& rPam, const SwRubyList& rList );
+ void SetRubyList( SwPaM& rPam, const SwRubyList& rList );
void ReadLayoutCache( SvStream& rStream );
void WriteLayoutCache( SvStream& rStream );
diff --git a/sw/inc/rubylist.hxx b/sw/inc/rubylist.hxx
index b025686daae3..3542cbcb3738 100644
--- a/sw/inc/rubylist.hxx
+++ b/sw/inc/rubylist.hxx
@@ -27,7 +27,6 @@ class SwRubyListEntry
SwFormatRuby m_aRubyAttr;
public:
SwRubyListEntry() : m_aRubyAttr( OUString() ) {}
- ~SwRubyListEntry();
const OUString& GetText() const { return m_sText; }
void SetText( const OUString& rStr ) { m_sText = rStr; }