[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - include/svx svx/source
matteocam
matteo.campanelli at gmail.com
Wed Jun 17 13:07:22 PDT 2015
include/svx/svdotext.hxx | 1 +
svx/source/svdraw/svdotext.cxx | 6 ++++++
2 files changed, 7 insertions(+)
New commits:
commit 95e136712bde6f457184464d0477ec7b720b4b89
Author: matteocam <matteo.campanelli at gmail.com>
Date: Wed Jun 17 16:06:32 2015 -0400
Added SdrTextObj::onUnderflowStatusEvent
Change-Id: I8661462f01d6ec23bed86275c9bbf7b94a5ab546
diff --git a/include/svx/svdotext.hxx b/include/svx/svdotext.hxx
index 32321f4..9dcb58a 100644
--- a/include/svx/svdotext.hxx
+++ b/include/svx/svdotext.hxx
@@ -550,6 +550,7 @@ public:
virtual void onEditOutlinerStatusEvent( EditStatus* pEditStatus );
virtual void onOverflowStatusEvent( );
+ virtual void onUnderflowStatusEvent( );
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 87cef77..867423b 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1983,6 +1983,11 @@ void SdrTextObj::onOverflowStatusEvent( )
}
}
+void SdrTextObj::onUnderflowStatusEvent( )
+{
+
+}
+
/** returns the currently active text. */
SdrText* SdrTextObj::getActiveText() const
{
@@ -2103,6 +2108,7 @@ IMPL_LINK_NOARG(SdrTextObj,ImpDecomposeChainedText)
* 2) Set the text of the other guy to what is left
*
*/
+ onUnderflowStatusEvent();
}
return 0;
}
More information about the Libreoffice-commits
mailing list