Kaydet (Commit) 7659d1b6 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: C4245: signed/unsigned mismatch

Change-Id: I070123efc658484a54800743cdd447a1cd2f89d3
üst 03889338
...@@ -64,7 +64,7 @@ AreaPropertyPanel::AreaPropertyPanel( ...@@ -64,7 +64,7 @@ AreaPropertyPanel::AreaPropertyPanel(
const cssu::Reference<css::frame::XFrame>& rxFrame, const cssu::Reference<css::frame::XFrame>& rxFrame,
SfxBindings* pBindings) SfxBindings* pBindings)
: PanelLayout(pParent, "AreaPropertyPanel", "svx/ui/sidebararea.ui", rxFrame), : PanelLayout(pParent, "AreaPropertyPanel", "svx/ui/sidebararea.ui", rxFrame),
meLastXFS(-1), meLastXFS(static_cast<sal_uInt16>(-1)),
maLastColor(Color(COL_DEFAULT_SHAPE_FILLING)), maLastColor(Color(COL_DEFAULT_SHAPE_FILLING)),
mnLastPosGradient(0), mnLastPosGradient(0),
mnLastPosHatch(0), mnLastPosHatch(0),
...@@ -808,7 +808,7 @@ void AreaPropertyPanel::NotifyItemUpdate( ...@@ -808,7 +808,7 @@ void AreaPropertyPanel::NotifyItemUpdate(
mpLbFillAttr->Disable(); mpLbFillAttr->Disable();
mpLbFillAttr->SetNoSelection(); mpLbFillAttr->SetNoSelection();
mpToolBoxColor->Hide(); mpToolBoxColor->Hide();
meLastXFS = -1; meLastXFS = static_cast<sal_uInt16>(-1);
mpStyleItem.reset(); mpStyleItem.reset();
} }
...@@ -841,7 +841,7 @@ void AreaPropertyPanel::NotifyItemUpdate( ...@@ -841,7 +841,7 @@ void AreaPropertyPanel::NotifyItemUpdate(
mpLbFillAttr->Disable(); mpLbFillAttr->Disable();
mpLbFillAttr->SetNoSelection(); mpLbFillAttr->SetNoSelection();
mpToolBoxColor->Hide(); mpToolBoxColor->Hide();
meLastXFS = -1; meLastXFS = static_cast<sal_uInt16>(-1);
mpStyleItem.reset(); mpStyleItem.reset();
break; break;
} }
......
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