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

loplugin:salbool

Change-Id: I1da621fa46de1ff0c268d10d46a7b5a8bd860623
üst c00f6dd0
......@@ -1083,7 +1083,7 @@ static void addEdit( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachO
}
else if( rEntry.Name == "Enabled" )
{
sal_Bool bValue = true;
bool bValue = true;
rEntry.Value >>= bValue;
bEnabled = bValue;
}
......@@ -1101,7 +1101,7 @@ static void addEdit( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachO
}
else if( rEntry.Name == "InternalUIOnly" )
{
sal_Bool bValue = false;
bool bValue = false;
rEntry.Value >>= bValue;
bIgnore = bValue;
}
......@@ -1177,7 +1177,7 @@ static void addEdit( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachO
}
else if( aCtrlType == "Bool" && pCurParent )
{
sal_Bool bVal = false;
bool bVal = false;
PropertyValue* pVal = pController->getValue( aPropertyName );
if( pVal )
pVal->Value >>= bVal;
......
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