summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2023-10-21 14:28:27 +0300
committerAndras Timar <andras.timar@collabora.com>2023-11-06 08:23:39 +0100
commit9324d766f18a45ca4079c827015ff4f57b7f5ced (patch)
tree0c5fdc1df98e6529040e62f547e447bf9a9e0981
parentf718d63693263970429a68f568db6046aaa9df01 (diff)
Make ConvertFieldsToText private
Change-Id: Ie3d22b63260d2b2b05a46c5b2a6ca915cf9d4bcd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158304 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r--bin/find-can-be-private-symbols.functions.results2
-rw-r--r--sw/inc/doc.hxx2
-rw-r--r--sw/inc/editsh.hxx2
3 files changed, 2 insertions, 4 deletions
diff --git a/bin/find-can-be-private-symbols.functions.results b/bin/find-can-be-private-symbols.functions.results
index d147531663df..f4f89fd05433 100644
--- a/bin/find-can-be-private-symbols.functions.results
+++ b/bin/find-can-be-private-symbols.functions.results
@@ -11940,7 +11940,6 @@ SwDoc::CloneSdrObj(SdrObject const&, bool, bool)
SwDoc::CompareDoc(SwDoc const&)
SwDoc::ContainsHiddenChars() const
SwDoc::ContainsPageDesc(SwPageDesc const*, unsigned long*) const
-SwDoc::ConvertFieldsToText(SwRootFrame const&)
SwDoc::CopyCharFormat(SwCharFormat const&)
SwDoc::CopyFormat(SwFormat const&, SwFormatsBase const&, SwFormat* (SwDoc::*)(rtl::OUString const&, SwFormat*, bool, bool), SwFormat const&)
SwDoc::CopyFormatArr(SwFormatsBase const&, SwFormatsBase const&, SwFormat* (SwDoc::*)(rtl::OUString const&, SwFormat*, bool, bool), SwFormat&)
@@ -12355,7 +12354,6 @@ SwEditShell::ClearAutomaticContour()
SwEditShell::CollectAdvancedClassification()
SwEditShell::CollectParagraphClassification()
SwEditShell::CompareDoc(SwDoc const&)
-SwEditShell::ConvertFieldsToText()
SwEditShell::Copy(SwEditShell&)
SwEditShell::CopySelToDoc(SwDoc&)
SwEditShell::CreateExtTextInput(o3tl::strong_int<unsigned short, LanguageTypeTag>)
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx
index e62bc4ba1f37..8906dc7b90ad 100644
--- a/sw/inc/doc.hxx
+++ b/sw/inc/doc.hxx
@@ -1437,7 +1437,7 @@ public:
// restore the invisible content if it's available on the undo stack
bool RestoreInvisibleContent();
- bool ConvertFieldsToText(SwRootFrame const& rLayout);
+ SAL_DLLPRIVATE bool ConvertFieldsToText(SwRootFrame const& rLayout);
// Create sub-documents according to given collection.
// If no collection is given, use chapter styles for 1st level.
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx
index 663a0ffc35f7..217e0203c59f 100644
--- a/sw/inc/editsh.hxx
+++ b/sw/inc/editsh.hxx
@@ -185,7 +185,7 @@ public:
void CountWords( SwDocStat& rStat ) const;
/// Replace fields by text - mailmerge support.
- bool ConvertFieldsToText();
+ SAL_DLLPRIVATE bool ConvertFieldsToText();
/// Set all numbering start points to a fixed value - mailmerge support.
void SetNumberingRestart();