[Openvas-commits] r10636 - in trunk/gsd: . src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Fri Mar 25 17:29:17 CET 2011
Author: raimund
Date: 2011-03-25 17:29:17 +0100 (Fri, 25 Mar 2011)
New Revision: 10636
Modified:
trunk/gsd/ChangeLog
trunk/gsd/src/dock_reports.cpp
Log:
* src/dock_reports.cpp (update): Fixed the report widget. The filterbox
displays the overall result count.
Modified: trunk/gsd/ChangeLog
===================================================================
--- trunk/gsd/ChangeLog 2011-03-25 14:52:06 UTC (rev 10635)
+++ trunk/gsd/ChangeLog 2011-03-25 16:29:17 UTC (rev 10636)
@@ -1,5 +1,10 @@
2011-03-25 Raimund Renkert <raimund.renkert at greenbone.net>
+ * src/dock_reports.cpp (update): Fixed the report widget. The filterbox
+ displays the overall result count.
+
+2011-03-25 Raimund Renkert <raimund.renkert at greenbone.net>
+
* src/gsd_control.cpp (request_report): Changed format strings to the same
format as in they are in omp.
(report_download): Do not make the format to upper case letter.
Modified: trunk/gsd/src/dock_reports.cpp
===================================================================
--- trunk/gsd/src/dock_reports.cpp 2011-03-25 14:52:06 UTC (rev 10635)
+++ trunk/gsd/src/dock_reports.cpp 2011-03-25 16:29:17 UTC (rev 10636)
@@ -227,24 +227,24 @@
la_high_count->setText (tr ("%1 of %2").arg (high)
.arg (report->getValue (tmp_rep,
"result_count"
- " hole")));
+ " hole full")));
la_medium_count->setText (tr ("%1 of %2").arg (med)
.arg (tmp->getValue (tmp_rep,
"result_count"
- " warning")));
+ " warning full")));
la_low_count->setText (tr ("%1 of %2").arg (low)
.arg (tmp->getValue (tmp_rep,
"result_count"
- " info")));
+ " info full")));
la_log_count->setText (tr ("%1 of %2").arg (log)
.arg (tmp->getValue (tmp_rep,
"result_count"
- " log")));
+ " log full")));
la_false_pos_count->setText (tr ("%1 of %2").arg (fp)
.arg (tmp->getValue (tmp_rep,
"result_count"
" false_"
- "positive")));
+ "positive full")));
pb_save->setEnabled (true);
}
More information about the Openvas-commits
mailing list