From 913f0da1ab10533c413861200c67b9396559970f Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Thu, 31 Jan 2019 12:44:57 -0500 Subject: [PATCH] clean up no data display on stats page --- sleepyhead/statistics.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp index cf72b758..c607cfcc 100644 --- a/sleepyhead/statistics.cpp +++ b/sleepyhead/statistics.cpp @@ -985,13 +985,14 @@ QString Statistics::GenerateHTML() if (!havedata) { - html += "
"; - html += QString("
") + - "" - "

" + tr("I can haz data?!?") + "

"+ - "

"+tr("This lonely sleepy sheep has no data :(")+"

" +// html += "
"; + html += "
"; +// html += QString("
") + + html += QString( "


" + tr("I can haz data?!?") + "

"+ + "

" + "

"+tr("This lonely sleepy sheep has no data :(")+"

"); - "
"; +// "
"; html += htmlFooter(havedata); return html; }