1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-an,v 1.2 2011/11/23 08:20:38 marino Exp $
--- GUI/Widgets/Fl_Loop.C.orig 2001-04-19 20:48:10.000000000 +0000
+++ GUI/Widgets/Fl_Loop.C
@@ -17,7 +17,7 @@
*/
#include "Fl_Loop.h"
-#include <iostream.h>
+#include <iostream>
#include <FL/fl_draw.H>
#include <FL/x.H>
#include <math.h>
@@ -30,7 +30,7 @@ static const float RADCONV = 0.017453292
static const int INDW = 3; // indicator width
static const int UPDATECYCLES = 4;
-Fl_Loop::Fl_Loop(int x, int y, int w, int h, const char* label=0) :
+Fl_Loop::Fl_Loop(int x, int y, int w, int h, const char* label) :
Fl_Double_Window(x,y,w,h,label),
m_data(NULL),
m_MainWin(NULL),
|