[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - include/editeng
matteocam
matteo.campanelli at gmail.com
Tue Jun 30 13:42:06 PDT 2015
include/editeng/overflowingtxt.hxx | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
New commits:
commit 5ef201c3a2016105bdc7795620e34ec36c44ed87
Author: matteocam <matteo.campanelli at gmail.com>
Date: Tue Jun 30 16:41:34 2015 -0400
Change access properties of Overflow classes
Change-Id: I1ec816f7fe4d0aa0b25b6cacba6f84eb6b3c595b
diff --git a/include/editeng/overflowingtxt.hxx b/include/editeng/overflowingtxt.hxx
index 8f67004..b559921 100644
--- a/include/editeng/overflowingtxt.hxx
+++ b/include/editeng/overflowingtxt.hxx
@@ -34,7 +34,7 @@ typedef EditTextObject FormattedTextPortion;
-class EDITENG_DLLPUBLIC OverflowingText
+class OverflowingText
{
public:
@@ -58,10 +58,9 @@ public:
bool HasOtherParas() const { return !(mTailTxt == "" && mpMidParas == NULL); }
};
-class EDITENG_DLLPUBLIC NonOverflowingText {
+class NonOverflowingText {
public:
- const OutlinerParaObject *mpHeadParas;
- OUString mPreOverflowingTxt;
+
// NOTE: mPreOverflowingTxt might be empty
// Constructor
@@ -76,6 +75,10 @@ class EDITENG_DLLPUBLIC NonOverflowingText {
}
OutlinerParaObject *ToParaObject(Outliner *) const;
+
+ private:
+ const OutlinerParaObject *mpHeadParas;
+ OUString mPreOverflowingTxt;
};
More information about the Libreoffice-commits
mailing list