diff options
author | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-05-08 16:00:11 +0000 |
---|---|---|
committer | Johannes Hofmann <johannes.hofmann@gmx.de> | 2005-05-08 16:00:11 +0000 |
commit | c78e7a4e8c30641c8c762f9bac0dd2e46e675e25 (patch) | |
tree | 5bbead2a7fa33aa91156a507d0979a514d95a054 | |
parent | 92c343bcf05ee3491d7cea619e9f63bcdbf67d1d (diff) |
Mountain->Hill 1/2
Mountain->Hill 1/2
-rw-r--r-- | src/Hill.H | 6 | ||||
-rw-r--r-- | src/Hill.cxx | 4 | ||||
-rw-r--r-- | src/Makefile | 2 | ||||
-rw-r--r-- | src/Panorama.H | 4 |
4 files changed, 8 insertions, 8 deletions
@@ -1,5 +1,5 @@ // -// "$Id: Hill.H,v 1.10 2005/05/03 21:36:39 hofmann Exp $" +// "$Id: Hill.H,v 1.11 2005/05/08 18:00:11 hofmann Exp $" // // X11 header file for the Fast Light Tool Kit (FLTK). // @@ -21,8 +21,8 @@ // USA. // -#ifndef MOUNTAIN_H -#define MOUNTAIN_H +#ifndef HILL_H +#define HILL_H class Mountain; diff --git a/src/Hill.cxx b/src/Hill.cxx index 88df3b3..310fd55 100644 --- a/src/Hill.cxx +++ b/src/Hill.cxx @@ -1,5 +1,5 @@ // -// "$Id: Hill.cxx,v 1.9 2005/05/05 11:02:07 hofmann Exp $" +// "$Id: Hill.cxx,v 1.10 2005/05/08 18:00:11 hofmann Exp $" // // PSEditWidget routines. // @@ -25,7 +25,7 @@ #include <stdio.h> #include <string.h> -#include "Mountain.H" +#include "Hill.H" Mountain::Mountain(const char *n, double p, double l, double h) { name = strdup(n); diff --git a/src/Makefile b/src/Makefile index 40a0454..dcb71d6 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ CFLAGS=-g -I/usr/X11R6/include CXXFLAGS=-g -I/usr/X11R6/include -I/usr/local/include -fno-stack-protector LDFLAGS=-g -fno-stack-protector -OBJECTS=flmountains.o GipfelWidget.o Mountain.o Panorama.o +OBJECTS=gipfel.o GipfelWidget.o Hill.o Panorama.o #%.o: %.c # $(CC) -c $(CFLAGS) $*.c diff --git a/src/Panorama.H b/src/Panorama.H index 4803a4b..290be50 100644 --- a/src/Panorama.H +++ b/src/Panorama.H @@ -1,5 +1,5 @@ // -// "$Id: Panorama.H,v 1.14 2005/05/05 17:37:37 hofmann Exp $" +// "$Id: Panorama.H,v 1.15 2005/05/08 18:00:11 hofmann Exp $" // // X11 header file for the Fast Light Tool Kit (FLTK). // @@ -24,7 +24,7 @@ #ifndef PANORAMA_H #define PANORAMA_H -#include "Mountain.H" +#include "Hill.H" class Panorama { private: |