diff options
Diffstat (limited to 'sysutils/xosview/patches/patch-al')
-rw-r--r-- | sysutils/xosview/patches/patch-al | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/sysutils/xosview/patches/patch-al b/sysutils/xosview/patches/patch-al deleted file mode 100644 index 1e6ad32e578..00000000000 --- a/sysutils/xosview/patches/patch-al +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-al,v 1.3 2003/10/01 01:14:35 christos Exp $ - ---- fieldmeter.cc.orig 1999-02-16 09:08:35.000000000 -0500 -+++ fieldmeter.cc 2003-09-30 20:48:22.000000000 -0400 -@@ -8,3 +8,4 @@ - // --#include <fstream.h> -+#include <iostream> -+#include <fstream> - #include <stdlib.h> -@@ -296,10 +297,10 @@ - || (x > x_ + width_) || (x + width > x_ + width_)){ -- cerr << "FieldMeter::checkX() : bad horiz values for meter : " -- << name() << endl; -+ std::cerr << "FieldMeter::checkX() : bad horiz values for meter : " -+ << name() << std::endl; - -- cerr <<"value "<<x<<", width "<<width<<", total_ = "<<total_<<endl; -+ std::cerr <<"value "<<x<<", width "<<width<<", total_ = "<<total_<<std::endl; - - for (int i = 0 ; i < numfields_ ; i++) -- cerr <<"fields_[" <<i <<"] = " <<fields_[i] <<","; -- cerr <<endl; -+ std::cerr <<"fields_[" <<i <<"] = " <<fields_[i] <<","; -+ std::cerr <<std::endl; - |