From: Pino Toscano Date: Mon, 26 Dec 2005 18:22:56 +0000 (+0000) Subject: Warning messages on console doesn't need to be translated. X-Git-Tag: v3.5.1~2 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=a1d49aa6e8dd61b7428b53a0928de138f0445d7e;p=libqmvoc.git 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 --- 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; }