diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:31:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 11:15:11 +0200 |
commit | 0940229305247b4e64e8c85c9734020c9808a6ec (patch) | |
tree | 3491592b0ddade1859dca48c62007bafb9cf47d6 /wizards | |
parent | 9c06059ec546683bfa095cf4f59ac6ea94da34fb (diff) |
Fix '..'
To complete this:
https://gerrit.libreoffice.org/#/c/78312/
This is a massive replace for lines ending with
".." instead of "..."
It passed "make check" on Linux.
Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe
Reviewed-on: https://gerrit.libreoffice.org/78356
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/agenda/TopicsControl.py | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/form/FormControlArranger.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/TopicsControl.py b/wizards/com/sun/star/wizards/agenda/TopicsControl.py index 68b157020619..6989f1b74ddd 100644 --- a/wizards/com/sun/star/wizards/agenda/TopicsControl.py +++ b/wizards/com/sun/star/wizards/agenda/TopicsControl.py @@ -555,7 +555,7 @@ class TopicsControl(ControlScroller): lowerRow = self.ControlGroupVector[guiRow] else: # if we scrolled we are done... - #otherwise.. + #otherwise... lowerRow = self.ControlGroupVector[guiRow + 1] self.focus(self.getControl(lowerRow, control)) diff --git a/wizards/com/sun/star/wizards/form/FormControlArranger.java b/wizards/com/sun/star/wizards/form/FormControlArranger.java index a1eacc71366d..93becab45604 100644 --- a/wizards/com/sun/star/wizards/form/FormControlArranger.java +++ b/wizards/com/sun/star/wizards/form/FormControlArranger.java @@ -174,7 +174,7 @@ public class FormControlArranger int nRightDist = nBaseWidth - (DBControlList[a].getPosition().X - cHoriDistance); if (nLeftDist < 0.5 * nRightDist) { - // Fieldwidths in the line can be made smaller.. + // Fieldwidths in the line can be made smaller... adjustLineWidth(StartA, a, nLeftDist, -1); m_currentLabelPosY = m_currentMaxRowHeight + cVertDistance; m_currentControlPosY = m_currentLabelPosY + m_LabelHeight; |