From 7278f1ac3720de57407c4033c8bb7fa16f261000 Mon Sep 17 00:00:00 2001 From: Ian MacArthur Date: Thu, 1 May 2014 22:04:26 +0000 Subject: Modify fl_gleam.cxx to experimentally remove an inclde of and a call to "using namespace std;" that appear to be unnecessary in this code. Also add the svn $Id$ lines, which appear to have been missing before. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10141 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_gleam.cxx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/fl_gleam.cxx b/src/fl_gleam.cxx index 2c9fe786a..6b410fd55 100644 --- a/src/fl_gleam.cxx +++ b/src/fl_gleam.cxx @@ -1,4 +1,6 @@ // +// "$Id$" +// // "Gleam" drawing routines for the Fast Light Tool Kit (FLTK). // // Copyright 1998-2010 by Bill Spitzak and others. @@ -25,9 +27,11 @@ #include #include -#include +//#include + +//using namespace std; -using namespace std; +#define min(A,B) ((A) < (B) ? (A) : (B)) static void gleam_color(Fl_Color c) { if (Fl::draw_box_active()) fl_color(c); @@ -129,3 +133,9 @@ Fl_Boxtype fl_define_FL_GLEAM_UP_BOX() { fl_internal_boxtype(_FL_GLEAM_ROUND_DOWN_BOX, down_box); return _FL_GLEAM_UP_BOX; } + + +// +// End of "$Id$". +// + -- cgit v1.2.3