Changed #include "*.C" to "*.cxx"...
git-svn-id: file:///fltk/svn/fltk/trunk@140 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
ddc55fd591
commit
eb9fdfb01f
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: Fl_cutpaste.cxx,v 1.3 1998/10/21 14:20:31 mike Exp $"
|
||||
// "$Id: Fl_cutpaste.cxx,v 1.4 1998/12/07 13:36:22 mike Exp $"
|
||||
//
|
||||
// Cut/paste code for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -30,7 +30,7 @@
|
||||
// has no text editing fields or other things that call cut or paste.
|
||||
|
||||
#ifdef WIN32
|
||||
#include "Fl_cutpaste_win32.C"
|
||||
#include "Fl_cutpaste_win32.cxx"
|
||||
#else
|
||||
|
||||
#include <FL/Fl.H>
|
||||
@ -149,5 +149,5 @@ void Fl::selection(Fl_Widget &owner, const char *stuff, int len) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_cutpaste.cxx,v 1.3 1998/10/21 14:20:31 mike Exp $".
|
||||
// End of "$Id: Fl_cutpaste.cxx,v 1.4 1998/12/07 13:36:22 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: Fl_get_key.cxx,v 1.3 1998/10/21 14:20:33 mike Exp $"
|
||||
// "$Id: Fl_get_key.cxx,v 1.4 1998/12/07 13:36:23 mike Exp $"
|
||||
//
|
||||
// Keyboard state routines for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -24,7 +24,7 @@
|
||||
//
|
||||
|
||||
#ifdef WIN32
|
||||
#include "Fl_get_key_win32.C"
|
||||
#include "Fl_get_key_win32.cxx"
|
||||
#else
|
||||
|
||||
// Return the current state of a key. This is the X version. I identify
|
||||
@ -60,5 +60,5 @@ int Fl::get_key(int k) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_get_key.cxx,v 1.3 1998/10/21 14:20:33 mike Exp $".
|
||||
// End of "$Id: Fl_get_key.cxx,v 1.4 1998/12/07 13:36:23 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: Fl_x.cxx,v 1.10 1998/12/07 13:34:27 mike Exp $"
|
||||
// "$Id: Fl_x.cxx,v 1.11 1998/12/07 13:36:23 mike Exp $"
|
||||
//
|
||||
// X specific code for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -24,7 +24,7 @@
|
||||
//
|
||||
|
||||
#ifdef WIN32
|
||||
#include "Fl_win32.C"
|
||||
#include "Fl_win32.cxx"
|
||||
#else
|
||||
|
||||
#define CONSOLIDATE_MOTION 1
|
||||
@ -858,5 +858,5 @@ void Fl_Window::flush() {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: Fl_x.cxx,v 1.10 1998/12/07 13:34:27 mike Exp $".
|
||||
// End of "$Id: Fl_x.cxx,v 1.11 1998/12/07 13:36:23 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_color.cxx,v 1.3 1998/10/21 14:20:45 mike Exp $"
|
||||
// "$Id: fl_color.cxx,v 1.4 1998/12/07 13:36:24 mike Exp $"
|
||||
//
|
||||
// Color functions for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -26,7 +26,7 @@
|
||||
// Implementation of fl_color(i), fl_color(r,g,b).
|
||||
|
||||
#ifdef WIN32
|
||||
#include "fl_color_win32.C"
|
||||
#include "fl_color_win32.cxx"
|
||||
#else
|
||||
|
||||
// Also code to look at the X visual and figure out the best way to turn
|
||||
@ -331,5 +331,5 @@ void Fl::get_color(Fl_Color i, uchar &red, uchar &green, uchar &blue) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_color.cxx,v 1.3 1998/10/21 14:20:45 mike Exp $".
|
||||
// End of "$Id: fl_color.cxx,v 1.4 1998/12/07 13:36:24 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_color_win32.cxx,v 1.7 1998/12/02 16:04:02 mike Exp $"
|
||||
// "$Id: fl_color_win32.cxx,v 1.8 1998/12/07 13:36:24 mike Exp $"
|
||||
//
|
||||
// WIN32 color functions for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -38,7 +38,7 @@
|
||||
#include <FL/fl_draw.H>
|
||||
|
||||
static unsigned fl_cmap[256] = {
|
||||
#include "fl_cmap.h" // this is a file produced by "cmap.C":
|
||||
#include "fl_cmap.h" // this is a file produced by "cmap.cxx":
|
||||
};
|
||||
|
||||
// Translations to win32 data structures:
|
||||
@ -233,5 +233,5 @@ fl_select_palette(void)
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_color_win32.cxx,v 1.7 1998/12/02 16:04:02 mike Exp $".
|
||||
// End of "$Id: fl_color_win32.cxx,v 1.8 1998/12/07 13:36:24 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_draw_image.cxx,v 1.3 1998/10/21 14:20:48 mike Exp $"
|
||||
// "$Id: fl_draw_image.cxx,v 1.4 1998/12/07 13:36:25 mike Exp $"
|
||||
//
|
||||
// Image drawing routines for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -34,7 +34,7 @@
|
||||
// defeat some of the shortcuts in translating the image for X.
|
||||
|
||||
#ifdef WIN32
|
||||
#include "fl_draw_image_win32.C"
|
||||
#include "fl_draw_image_win32.cxx"
|
||||
#else
|
||||
|
||||
// A list of assumptions made about the X display:
|
||||
@ -627,5 +627,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_draw_image.cxx,v 1.3 1998/10/21 14:20:48 mike Exp $".
|
||||
// End of "$Id: fl_draw_image.cxx,v 1.4 1998/12/07 13:36:25 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_font.cxx,v 1.6 1998/12/02 15:53:22 mike Exp $"
|
||||
// "$Id: fl_font.cxx,v 1.7 1998/12/07 13:36:26 mike Exp $"
|
||||
//
|
||||
// Font selection code for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -26,7 +26,7 @@
|
||||
// Select fonts from the fltk font table.
|
||||
|
||||
#ifdef WIN32
|
||||
#include "fl_font_win32.C"
|
||||
#include "fl_font_win32.cxx"
|
||||
#else
|
||||
|
||||
#include <config.h>
|
||||
@ -292,5 +292,5 @@ void fl_draw(const char* str, int x, int y) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_font.cxx,v 1.6 1998/12/02 15:53:22 mike Exp $".
|
||||
// End of "$Id: fl_font.cxx,v 1.7 1998/12/07 13:36:26 mike Exp $".
|
||||
//
|
||||
|
@ -1,5 +1,5 @@
|
||||
//
|
||||
// "$Id: fl_set_fonts.cxx,v 1.4 1998/12/02 15:51:37 mike Exp $"
|
||||
// "$Id: fl_set_fonts.cxx,v 1.5 1998/12/07 13:36:26 mike Exp $"
|
||||
//
|
||||
// More font utilities for the Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
@ -29,7 +29,7 @@
|
||||
// and bold italic.
|
||||
|
||||
#ifdef WIN32
|
||||
#include "fl_set_fonts_win32.C"
|
||||
#include "fl_set_fonts_win32.cxx"
|
||||
#else
|
||||
|
||||
// Standard X fonts are matched by a pattern that is always of
|
||||
@ -325,5 +325,5 @@ int Fl::get_font_sizes(Fl_Font fnum, int*& sizep) {
|
||||
#endif
|
||||
|
||||
//
|
||||
// End of "$Id: fl_set_fonts.cxx,v 1.4 1998/12/02 15:51:37 mike Exp $".
|
||||
// End of "$Id: fl_set_fonts.cxx,v 1.5 1998/12/07 13:36:26 mike Exp $".
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user