From a1d49aa6e8dd61b7428b53a0928de138f0445d7e Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 26 Dec 2005 18:22:56 +0000 Subject: [PATCH] Warning messages on console doesn't need to be translated. CCMAIL: kde-i18n-doc@kde.org svn path=/branches/KDE/3.5/kdeedu/libkdeedu/; revision=491597 --- kdeeduplot/kplotobject.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kdeeduplot/kplotobject.cpp b/kdeeduplot/kplotobject.cpp index 57ca751..145f12c 100644 --- a/kdeeduplot/kplotobject.cpp +++ b/kdeeduplot/kplotobject.cpp @@ -17,7 +17,6 @@ #include #include -#include #include "kplotobject.h" KPlotObject::KPlotObject() { @@ -41,7 +40,7 @@ KPlotObject::~KPlotObject() void KPlotObject::removePoint( unsigned int index ) { if ( index > pList.count() - 1 ) { - kdWarning() << i18n( "Ignoring attempt to remove non-existent plot object" ) << endl; + kdWarning() << "Ignoring attempt to remove non-existent plot object" << endl; return; } -- 2.47.3