[Libreoffice-commits] core.git: Branch 'aoo/trunk' - starmath/source
Matthias Seidel (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 5 14:11:59 UTC 2019
starmath/source/toolbox.cxx | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
New commits:
commit b530338b6f4b1cdd8aed2d431ee5df0fa418bba3
Author: Matthias Seidel <mseidel at apache.org>
AuthorDate: Sun May 5 12:49:15 2019 +0000
Commit: Matthias Seidel <mseidel at apache.org>
CommitDate: Sun May 5 12:49:15 2019 +0000
Enable forgotten 5th line for math toolbox
diff --git a/starmath/source/toolbox.cxx b/starmath/source/toolbox.cxx
index fc630a67999f..bcbfa00b8f67 100644
--- a/starmath/source/toolbox.cxx
+++ b/starmath/source/toolbox.cxx
@@ -248,7 +248,7 @@ void SmToolBoxWindow::StateChanged( StateChangedType nStateChange )
AdjustPosSize( bSetPosition );
bSetPosition = sal_False;
}
- //... otherwise the base class will remember the last position of the window
+ // ... otherwise the base class will remember the last position of the window
SfxFloatingWindow::StateChanged( nStateChange );
}
@@ -256,7 +256,7 @@ void SmToolBoxWindow::StateChanged( StateChangedType nStateChange )
void SmToolBoxWindow::AdjustPosSize( sal_Bool bSetPos )
{
Size aCatSize( aToolBoxCat.CalcWindowSizePixel( 2 ) );
- Size aCmdSize( pToolBoxCmd->CalcWindowSizePixel( 4 /* see nLines in SetCategory*/ ) );
+ Size aCmdSize( pToolBoxCmd->CalcWindowSizePixel( 4 /* see nLines in SetCategory */ ) );
DBG_ASSERT( aCatSize.Width() == aCmdSize.Width(), "width mismatch" );
// catalog settings
@@ -325,13 +325,13 @@ void SmToolBoxWindow::SetCategory(sal_uInt16 nCategoryRID)
switch (nCategoryRID)
{
case RID_UNBINOPS_CAT : nLines = 4; break;
- case RID_RELATIONS_CAT: nLines = 4; break;
- case RID_SETOPERATIONS_CAT: nLines = 4; break;
- case RID_FUNCTIONS_CAT: nLines = 4; break;
+ case RID_RELATIONS_CAT: nLines = 5; break;
+ case RID_SETOPERATIONS_CAT: nLines = 5; break;
+ case RID_FUNCTIONS_CAT: nLines = 5; break;
case RID_OPERATORS_CAT: nLines = 3; break;
- case RID_ATTRIBUTES_CAT: nLines = 4; break;
+ case RID_ATTRIBUTES_CAT: nLines = 5; break;
case RID_MISC_CAT: nLines = 4; break;
- case RID_BRACKETS_CAT: nLines = 4; break;
+ case RID_BRACKETS_CAT: nLines = 5; break;
case RID_FORMAT_CAT: nLines = 3; break;
default:
// nothing to be done
@@ -397,4 +397,3 @@ SmToolBoxWrapper::SmToolBoxWrapper(Window *pParentWindow,
((SfxFloatingWindow *)pWindow)->Initialize(pInfo);
}
-
More information about the Libreoffice-commits
mailing list