1 From af65e7374d6d5058e46b9173efdedfc661f451b7 Mon Sep 17 00:00:00 2001
2 From: David Tardon <dtardon@redhat.com>
3 Date: Thu, 1 Feb 2018 13:05:51 +0100
4 Subject: [PATCH] =?UTF-8?q?WaE:=20unnecessary=20parentheses=20in=20declara?=
5 =?UTF-8?q?tion=20of=20=E2=80=98padding=E2=80=99?=
7 Content-Type: text/plain; charset=UTF-8
8 Content-Transfer-Encoding: 8bit
10 Change-Id: I6de141c5ec2520538f8232bd524d29e25710bef5
12 src/lib/FHCollector.cpp | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
15 diff --git a/src/lib/FHCollector.cpp b/src/lib/FHCollector.cpp
16 index f39c8df..3f24118 100644
17 --- a/src/lib/FHCollector.cpp
18 +++ b/src/lib/FHCollector.cpp
19 @@ -1907,7 +1907,7 @@ void libfreehand::FHCollector::_outputDisplayText(const libfreehand::FHDisplayTe
20 textObjectProps.insert("svg:width", width);
21 for (int i=0; i<4; ++i) // osnola: let assume that there is no padding
23 - char const *(padding[])= {"fo:padding-left","fo:padding-right","fo:padding-top","fo:padding-bottom"};
24 + char const *padding[] = {"fo:padding-left","fo:padding-right","fo:padding-top","fo:padding-bottom"};
25 textObjectProps.insert(padding[i],0,librevenge::RVNG_POINT);
27 if (!FH_ALMOST_ZERO(rotation))