From 90b3afee636092eb274b5aaa64f2a7f84bb2174f Mon Sep 17 00:00:00 2001 From: Mavridis Philippe Date: Fri, 29 Jan 2021 17:04:07 +0200 Subject: Remove unneeded i18n() calls Signed-off-by: Mavridis Philippe --- src/scanviewer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/scanviewer.cpp') diff --git a/src/scanviewer.cpp b/src/scanviewer.cpp index 3766a0d..a8b94ea 100644 --- a/src/scanviewer.cpp +++ b/src/scanviewer.cpp @@ -609,9 +609,9 @@ void ScanViewer::childExited() tdemain->_tray->setPixmap(KSystemTray::loadIcon("klamav_scan_safe")); TQTimer::singleShot( 10000, this, SLOT(resetSysTray()) ); if (!(errorsEncountered)) - KNotifyClient::event(tdemain->_tray->winId(),i18n( "ScanCompleteNoVirus" ), i18n( "Scan Complete - No Viruses Found!" )); + KNotifyClient::event(tdemain->_tray->winId(),"ScanCompleteNoVirus", i18n("Scan Complete - No Viruses Found!")); else - KNotifyClient::event(tdemain->_tray->winId(),i18n( "ScanCompleteNoVirusButErrors" ), i18n( "Scan Complete - No Viruses Found But Some Errors Encountered!" )); + KNotifyClient::event(tdemain->_tray->winId(),"ScanCompleteNoVirusButErrors", i18n("Scan Complete - No Viruses Found But Some Errors Encountered!")); }else if(status == 1){ tdemain->_tray->setPixmap(KSystemTray::loadIcon("klamav_scan_found")); -- cgit v1.2.1