summaryrefslogtreecommitdiff
path: root/oox/source/export/chartexport.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-01-03 15:40:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-01-06 11:29:45 +0100
commit744903b8c8c5a31d304a3191869b7bd76000f36c (patch)
treeeff6a31e195c21eee7f87297ca95abdc1df8f3c2 /oox/source/export/chartexport.cxx
parentafa6a774936c34b09b37ab8539193ac529681798 (diff)
Removed redundant semicolons
Change-Id: Ife14b8c3f7d121deb390deb5f405dd42d3016acf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86156 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'oox/source/export/chartexport.cxx')
-rw-r--r--oox/source/export/chartexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index 9b4e33963fcd..60172be93a38 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1560,7 +1560,7 @@ void ChartExport::exportGradientFill( const Reference< XPropertySet >& xPropSet
{
uno::Reference< container::XNameAccess > xTransparenceGradient(xFact->createInstance("com.sun.star.drawing.TransparencyGradientTable"), uno::UNO_QUERY);
uno::Any rTransparenceValue = xTransparenceGradient->getByName(sFillTransparenceGradientName);
- rTransparenceValue >>= aTransparenceGradient;;
+ rTransparenceValue >>= aTransparenceGradient;
WriteGradientFill(aGradient, aTransparenceGradient);
}
else