" + tr("Please Import Some Data") + "" +
tr("SleepyHead is pretty much useless without it.") + "
" +
tr("It might be a good idea to check preferences first,as there are some options that affect import.")
@@ -547,7 +560,7 @@ QString Statistics::GenerateHTML()
int decimals = 2;
html += " ";
- html += QString(" ");
+ html += QString(""); //cellpadding=2 cellspacing=0 border=0
int number_periods = 0;
if (p_profile->general->statReportMode() == 1) {
@@ -655,7 +668,7 @@ QString Statistics::GenerateHTML()
name = calcnames[row.calc].arg(schema::channel[id].fullname());
}
QString line;
- line += QString("%1 | ").arg(name);
+ line += QString(" %1 | ").arg(name);
for (int j=0; j < periods.size(); j++) {
QString val=row.value(periods.at(j).start,periods.at(j).end);
line += QString("%2 | ")
@@ -1024,7 +1037,7 @@ QString Statistics::GenerateHTML()
RXorder=true;
qSort(rxchange.begin(),rxchange.end());*/
html += "";
- html += QString(" ");
+ html += QString(""); //cellpadding=2 cellspacing=0 border=1
html += "" + tr("Changes to Prescription Settings") + " | ";
QString extratxt;
@@ -1078,7 +1091,7 @@ QString Statistics::GenerateHTML()
}
mode = rx.mode;
- extratxt = "";
+ extratxt = ""; //cellpadding=0 cellspacing=0
// tooltip=QString("%1 %2% ").arg(machstr).arg(percentile*100.0)+STR_TR_EPAP+
// QString("=%1 %2% ").arg(rx.per1,0,'f',decimals).arg(percentile*100.0)+
@@ -1148,7 +1161,7 @@ QString Statistics::GenerateHTML()
tooltiphide = "tooltip.hide();";
}
- html += QString(" ")
+ html += QString(" ")
.arg(color)
.arg(tooltipshow)
.arg(tooltiphide)
@@ -1182,7 +1195,7 @@ QString Statistics::GenerateHTML()
if (mach.size() > 0) {
html += "";
- html += QString(" ");
+ html += QString(""); // cellpadding=2 cellspacing=0 border=1 width=90%>");
html += "" + tr("Machine Information") + " | ";
html += QString("%1 | %2 | %3 | %4 | %5 | ")
@@ -1200,7 +1213,7 @@ QString Statistics::GenerateHTML()
QString mn = m->properties[STR_PROP_ModelNumber];
//if (mn.isEmpty())
- html += QString("%1 | %2 | %3 | %4 | %5 | ")
+ html += QString("%1 | %2 | %3 | %4 | %5 | ")
.arg(m->properties[STR_PROP_Brand])
.arg(m->properties[STR_PROP_Model] + " " + m->properties[STR_PROP_SubModel] +
(mn.isEmpty() ? "" : QString(" (") + mn + QString(")")))
|