Kaydet (Commit) f86084ea authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix brace position

Presumably a typo during conflict resolution for
d02f75a8 "Resolves: #i121420# merge sidebar
feature."

Change-Id: Id328c2d2dd0e1a3bb60b7ffd34842fd789da332a
üst ac322185
...@@ -1243,7 +1243,7 @@ void SwTableShell::GetState(SfxItemSet &rSet) ...@@ -1243,7 +1243,7 @@ void SwTableShell::GetState(SfxItemSet &rSet)
case SID_TABLE_VERT_BOTTOM: case SID_TABLE_VERT_BOTTOM:
{ {
sal_uInt16 nAlign = rSh.GetBoxAlign(); sal_uInt16 nAlign = rSh.GetBoxAlign();
sal_Bool bSet = nSlot == (SID_TABLE_VERT_NONE && nAlign == text::VertOrientation::NONE) || sal_Bool bSet = (nSlot == SID_TABLE_VERT_NONE && nAlign == text::VertOrientation::NONE) ||
(nSlot == SID_TABLE_VERT_CENTER && nAlign == text::VertOrientation::CENTER) || (nSlot == SID_TABLE_VERT_CENTER && nAlign == text::VertOrientation::CENTER) ||
(nSlot == SID_TABLE_VERT_BOTTOM && nAlign == text::VertOrientation::BOTTOM); (nSlot == SID_TABLE_VERT_BOTTOM && nAlign == text::VertOrientation::BOTTOM);
rSet.Put(SfxBoolItem(nSlot, bSet)); rSet.Put(SfxBoolItem(nSlot, bSet));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment