summaryrefslogtreecommitdiff
path: root/svx/source/unodraw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 11:06:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-01 06:57:19 +0000
commite209d115d41e25f5658dd52ae94ceb873b33013f (patch)
tree58b49bdcc833ec48bc8542f81b7918f50e07bb6d /svx/source/unodraw
parent8e27c68847c6461c7bc0bdbff44412d6bfb0b1e8 (diff)
remove old standalone Sun bug numbers
Sun bug numbers without any accompanying text are completely useless. Fixed with git grep -lP '//\s*#\d+#\s*$' | xargs perl -i -ne'/\/\/\s*#\d+#\s*$/d or print' And then hand-checking the result to restore places where it deleted code. And then some more grepping and hand-editing to kill the others. Change-Id: Ia96ce4466db8bb8da363ebf41f0ae7f45f28bf29 Reviewed-on: https://gerrit.libreoffice.org/19023 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r--svx/source/unodraw/unomod.cxx1
-rw-r--r--svx/source/unodraw/unoshtxt.cxx4
2 files changed, 0 insertions, 5 deletions
diff --git a/svx/source/unodraw/unomod.cxx b/svx/source/unodraw/unomod.cxx
index 6b6ac206d117..8d2d3430ad03 100644
--- a/svx/source/unodraw/unomod.cxx
+++ b/svx/source/unodraw/unomod.cxx
@@ -125,7 +125,6 @@ bool SvxUnoDrawMSFactory::createEvent( const SdrModel* pDoc, const SdrHint* pSdr
// case HINT_LAYERSETCHG: // layer set changed
// case HINT_LAYERSETORDERCHG: // layer set order changed (Insert/Remove/ChangePos)
-// #115423#
// case HINT_PAGECHG: // page changed
// aEvent.EventName = "PageModified";
// pPage = pSdrHint->GetPage();
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx
index 6e99378b6a0b..8e265579c7bc 100644
--- a/svx/source/unodraw/unoshtxt.cxx
+++ b/svx/source/unodraw/unoshtxt.cxx
@@ -525,7 +525,6 @@ void SvxTextEditSourceImpl::dispose()
void SvxTextEditSourceImpl::SetupOutliner()
{
- // #101029#
// only for UAA edit source: setup outliner equivalently as in
// SdrTextObj::Paint(), such that formatting equals screen
// layout
@@ -548,7 +547,6 @@ void SvxTextEditSourceImpl::SetupOutliner()
void SvxTextEditSourceImpl::UpdateOutliner()
{
- // #104157#
// only for UAA edit source: update outliner equivalently as in
// SdrTextObj::Paint(), such that formatting equals screen
// layout
@@ -970,7 +968,6 @@ Point SvxTextEditSourceImpl::LogicToPixel( const Point& rPoint, const MapMode& r
}
else if( IsValid() && mpModel )
{
- // #101029#
Point aPoint1( rPoint );
aPoint1.X() += maTextOffset.X();
aPoint1.Y() += maTextOffset.Y();
@@ -1008,7 +1005,6 @@ Point SvxTextEditSourceImpl::PixelToLogic( const Point& rPoint, const MapMode& r
Point aPoint2( OutputDevice::LogicToLogic( aPoint1,
MapMode(mpModel->GetScaleUnit()),
rMapMode ) );
- // #101029#
aPoint2.X() -= maTextOffset.X();
aPoint2.Y() -= maTextOffset.Y();