diff options
author | Mavridis Philippe <mavridisf@gmail.com> | 2021-01-14 14:02:11 +0200 |
---|---|---|
committer | Mavridis Philippe <mavridisf@gmail.com> | 2021-01-14 14:02:11 +0200 |
commit | 75f04527489372ae40c94e690013e0c84b0a7ca5 (patch) | |
tree | 4841eb8dca3f9c48e41d74ff9dc8b34c0ebef846 /src/scanviewer.cpp | |
parent | 95fc8cb3250ba5340951d4008be152ef6f915610 (diff) | |
download | klamav-75f04527489372ae40c94e690013e0c84b0a7ca5.tar.gz klamav-75f04527489372ae40c94e690013e0c84b0a7ca5.zip |
Fixed GUI typo.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/scanviewer.cpp')
-rw-r--r-- | src/scanviewer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scanviewer.cpp b/src/scanviewer.cpp index bce8d72..c9c60f0 100644 --- a/src/scanviewer.cpp +++ b/src/scanviewer.cpp @@ -91,7 +91,7 @@ ScanViewer::ScanViewer(TQWidget *parent, const char *name) //matches_label = new TQLabel(status_frame); //TQFontMetrics ml_fm(matches_label->fontMetrics()); - //matches_label->setFixedWidth(ml_fm.width(i18n("9999 viruseses/errors found"))); + //matches_label->setFixedWidth(ml_fm.width(i18n("9999 viruses/errors found"))); //matches_label->setFixedHeight(ml_fm.lineSpacing()); //status_layout->addWidget(matches_label, 0); @@ -133,7 +133,7 @@ ScanViewer::ScanViewer(TQWidget *parent, const char *name) matches2_label = new TQLabel(status2_frame); TQFontMetrics ml_fm2(matches2_label->fontMetrics()); - matches2_label->setFixedWidth(ml_fm2.width(i18n("9999 viruseses/problems found"))); + matches2_label->setFixedWidth(ml_fm2.width(i18n("9999 viruses/problems found"))); matches2_label->setFixedHeight(ml_fm2.lineSpacing()); status2_layout->addWidget(matches2_label, 0); @@ -266,7 +266,7 @@ void ScanViewer::processOutput() TQString str; str.setNum(resultview->childCount()); - str += i18n(" viruseses/problems found"); + str += i18n(" viruses/problems found"); matches2_label->setText(str); if (showProgress){ @@ -694,7 +694,7 @@ void ScanViewer::slotClear() resultview->clear(); // status2_label->setText(i18n("Ready")); - matches2_label->setText(i18n("0 viruseses/problems found")); + matches2_label->setText(i18n("0 viruses/problems found")); } |