Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan E. Cook2016-03-30 21:44:55 +0000
committerRyan D. Brooks2016-03-30 21:44:55 +0000
commit6d9d29a766b72339c509d1039f27c944f0028347 (patch)
tree6ae260513d77bab43b268456fd0ede439464975c /plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define
parent0cd398c60d102eaf9656915ee0889009f2b2daf8 (diff)
downloadorg.eclipse.osee-6d9d29a766b72339c509d1039f27c944f0028347.tar.gz
org.eclipse.osee-6d9d29a766b72339c509d1039f27c944f0028347.tar.xz
org.eclipse.osee-6d9d29a766b72339c509d1039f27c944f0028347.zip
refactor[ats_ATS271774]: Fix Header Margins
Change-Id: Ie4b600bdcb2b09ab9473d35f44965d71e0a53db2 Signed-off-by: Morgan E. Cook <Morgan.e.cook@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define')
-rw-r--r--plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
index 57c31a34fb7..4bb7596cee3 100644
--- a/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
+++ b/plugins/org.eclipse.osee.define.report.api/src/org/eclipse/osee/define/report/api/ReportConstants.java
@@ -35,7 +35,7 @@ public class ReportConstants {
static final String NEW_PAGE_TEMPLATE =
"<w:p><w:pPr><w:spacing w:after=\"0\"/>" + SECTION_TEMPLATE + "</w:pPr></w:p>";
public static final String PAGE_ADDS =
- "%s <w:pgMar w:top=\"1440\" w:right=\"1440\" w:bottom=\"1440\" w:left=\"1440\" w:header=\"720\" w:footer=\"720\" w:gutter=\"0\"/><w:cols w:space=\"720\"/>";
+ "%s <w:pgMar w:top=\"1440\" w:right=\"1440\" w:bottom=\"1440\" w:left=\"1440\" w:header=\"432\" w:footer=\"432\" w:gutter=\"0\"/><w:cols w:space=\"720\"/>";
public static final String INS = "</w:ins>";
public static final String[] WXML_CHARS = new String[] {"&", "<", ">", "\""};
public static final String[] WXML_ESCAPES = new String[] {"&amp;", "&lt;", "&gt;", "&quot;"};

Back to the top