diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-30 11:06:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-01 06:57:19 +0000 |
commit | e209d115d41e25f5658dd52ae94ceb873b33013f (patch) | |
tree | 58b49bdcc833ec48bc8542f81b7918f50e07bb6d /basctl | |
parent | 8e27c68847c6461c7bc0bdbff44412d6bfb0b1e8 (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 'basctl')
-rw-r--r-- | basctl/source/dlged/dlgedobj.cxx | 6 | ||||
-rw-r--r-- | basctl/source/dlged/dlgedview.cxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/basctl/source/dlged/dlgedobj.cxx b/basctl/source/dlged/dlgedobj.cxx index 9e4ab9b5c00f..4304ab3f86af 100644 --- a/basctl/source/dlged/dlgedobj.cxx +++ b/basctl/source/dlged/dlgedobj.cxx @@ -620,7 +620,6 @@ void DlgEdObj::TabIndexChange( const beans::PropertyChangeEvent& evt ) throw (Ru // reorder objects in drawing page GetModel()->GetPage(0)->SetObjectOrdNum( nOldTabIndex + 1, nNewTabIndex + 1 ); - // #110559# pForm->UpdateTabOrderAndGroups(); } @@ -897,7 +896,6 @@ void DlgEdObj::clonedFrom(const DlgEdObj* _pSource) aCtrl <<= xCtrl; xCont->insertByName( aOUniqueName , aCtrl ); - // #110559# pDlgEdForm->UpdateTabOrderAndGroups(); } } @@ -1043,7 +1041,6 @@ void DlgEdObj::SetDefaults() &GetDialogEditor(), aAny, aOUniqueName ); - // #110559# pDlgEdForm->UpdateTabOrderAndGroups(); } } @@ -1478,7 +1475,6 @@ void DlgEdForm::UpdateTabIndices() } } - // #110559# UpdateTabOrderAndGroups(); } @@ -1491,7 +1487,6 @@ void DlgEdForm::UpdateTabIndices() void DlgEdForm::UpdateTabOrder() { - // #110559# // When the tabindex of a control model changes, the dialog control is // notified about those changes. Due to #109067# (bad performance of // dialog editor) the dialog control doesn't activate the tab order @@ -1511,7 +1506,6 @@ void DlgEdForm::UpdateTabOrder() void DlgEdForm::UpdateGroups() { - // #110559# // The grouping of radio buttons in a dialog is done by vcl. // In the dialog editor we have two views (=controls) for one // radio button model. One control is owned by the dialog control, diff --git a/basctl/source/dlged/dlgedview.cxx b/basctl/source/dlged/dlgedview.cxx index cacb081371e7..d3825459484c 100644 --- a/basctl/source/dlged/dlgedview.cxx +++ b/basctl/source/dlged/dlgedview.cxx @@ -37,7 +37,6 @@ DlgEdView::DlgEdView (SdrModel& rModel, OutputDevice& rOut, DlgEditor& rEditor) SdrView(&rModel, &rOut), rDlgEditor(rEditor) { - // #114898# SetBufferedOutputAllowed(true); SetBufferedOverlayAllowed(true); } |