aboutsummaryrefslogtreecommitdiffstats
path: root/templatelayout.cpp
diff options
context:
space:
mode:
authorGravatar Gehad elrobey <gehadelrobey@gmail.com>2015-06-10 13:39:15 +0200
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-06-19 21:41:56 +0300
commit1040f0d4e57ca8ec13f9eb8e0b2214c89b90aaaf (patch)
tree08a6dd3232bbd7bb7c41770e18c2b2caf5888405 /templatelayout.cpp
parentc1523147905345ed5f979b374f766ce42bc9be9b (diff)
downloadsubsurface-1040f0d4e57ca8ec13f9eb8e0b2214c89b90aaaf.tar.gz
Printing: fix rendering bug for odd number of dives
Odd number of dives needs extra space from the buttom, so that when we scroll to the last page extra whitespace is shown under the last dive frame, this is fixed by adding a default footer to the base template. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'templatelayout.cpp')
-rw-r--r--templatelayout.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/templatelayout.cpp b/templatelayout.cpp
index a5d4b2329..6083d7b91 100644
--- a/templatelayout.cpp
+++ b/templatelayout.cpp
@@ -3,16 +3,7 @@
#include "templatelayout.h"
#include "helpers.h"
-TemplateLayout::TemplateLayout()
-{
-}
-
-TemplateLayout::~TemplateLayout()
-{
- delete m_engine;
-}
-
-int TemplateLayout::getTotalWork()
+int getTotalWork()
{
int dives = 0, i;
struct dive *dive;
@@ -25,6 +16,15 @@ int TemplateLayout::getTotalWork()
return dives;
}
+TemplateLayout::TemplateLayout()
+{
+}
+
+TemplateLayout::~TemplateLayout()
+{
+ delete m_engine;
+}
+
QString TemplateLayout::generate()
{
int progress = 0;