summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-25 16:41:31 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-25 16:41:31 +0200
commitda0e5863d83249c0cc34e6d070161235ba87aed1 (patch)
tree8c657e595db3633356e2b118e89dcdce0f84a7ae /oox
parent46a795c6299f6dd89d5f3d81f337016584098d83 (diff)
Some more sal_Bool -> bool
Change-Id: Iaae2c92e011c55f8739ecb7972ef9a3f71300765
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/drawingml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index cb3c291c9b92..6c4de9bc5ee9 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -2136,7 +2136,7 @@ void DrawingML::WriteText( const Reference< XInterface >& rXIface, const OUStrin
}
if (GetDocumentType() == DOCUMENT_DOCX)
{
- sal_Bool bTextAutoGrowHeight = false;
+ bool bTextAutoGrowHeight = false;
GET(bTextAutoGrowHeight, TextAutoGrowHeight);
mpFS->singleElementNS(XML_a, (bTextAutoGrowHeight ? XML_spAutoFit : XML_noAutofit), FSEND);
}