summaryrefslogtreecommitdiff
path: root/textscreen
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen')
-rw-r--r--textscreen/examples/calculator.c11
-rw-r--r--textscreen/examples/guitest.c11
-rw-r--r--textscreen/textscreen.h9
-rw-r--r--textscreen/txt_button.c9
-rw-r--r--textscreen/txt_button.h9
-rw-r--r--textscreen/txt_checkbox.c9
-rw-r--r--textscreen/txt_checkbox.h9
-rw-r--r--textscreen/txt_desktop.c9
-rw-r--r--textscreen/txt_desktop.h9
-rw-r--r--textscreen/txt_dropdown.c9
-rw-r--r--textscreen/txt_dropdown.h9
-rw-r--r--textscreen/txt_fileselect.c11
-rw-r--r--textscreen/txt_fileselect.h11
-rw-r--r--textscreen/txt_font.h10
-rw-r--r--textscreen/txt_gui.c9
-rw-r--r--textscreen/txt_gui.h11
-rw-r--r--textscreen/txt_inputbox.c9
-rw-r--r--textscreen/txt_inputbox.h9
-rw-r--r--textscreen/txt_io.c11
-rw-r--r--textscreen/txt_io.h11
-rw-r--r--textscreen/txt_label.c9
-rw-r--r--textscreen/txt_label.h9
-rw-r--r--textscreen/txt_largefont.h10
-rw-r--r--textscreen/txt_main.h11
-rw-r--r--textscreen/txt_radiobutton.c9
-rw-r--r--textscreen/txt_radiobutton.h9
-rw-r--r--textscreen/txt_scrollpane.c9
-rw-r--r--textscreen/txt_scrollpane.h9
-rw-r--r--textscreen/txt_sdl.c11
-rw-r--r--textscreen/txt_sdl.h11
-rw-r--r--textscreen/txt_separator.c9
-rw-r--r--textscreen/txt_separator.h9
-rw-r--r--textscreen/txt_smallfont.h10
-rw-r--r--textscreen/txt_spinctrl.c9
-rw-r--r--textscreen/txt_spinctrl.h9
-rw-r--r--textscreen/txt_strut.c9
-rw-r--r--textscreen/txt_strut.h9
-rw-r--r--textscreen/txt_table.c9
-rw-r--r--textscreen/txt_table.h9
-rw-r--r--textscreen/txt_utf8.c9
-rw-r--r--textscreen/txt_utf8.h9
-rw-r--r--textscreen/txt_widget.c9
-rw-r--r--textscreen/txt_widget.h9
-rw-r--r--textscreen/txt_window.c9
-rw-r--r--textscreen/txt_window.h9
-rw-r--r--textscreen/txt_window_action.c9
-rw-r--r--textscreen/txt_window_action.h9
47 files changed, 47 insertions, 399 deletions
diff --git a/textscreen/examples/calculator.c b/textscreen/examples/calculator.c
index 3db60ef7..f086e87e 100644
--- a/textscreen/examples/calculator.c
+++ b/textscreen/examples/calculator.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006-2009 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Example program: desktop calculator
//
-//-----------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
diff --git a/textscreen/examples/guitest.c b/textscreen/examples/guitest.c
index 3904ffa9..04d580c9 100644
--- a/textscreen/examples/guitest.c
+++ b/textscreen/examples/guitest.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006-2009 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,19 +11,12 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Example program: GUI test program
//
// Demonstrates all the main textscreen widgets in use and shows how
// a simple textscreen program can be written.
//
-//-----------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
diff --git a/textscreen/textscreen.h b/textscreen/textscreen.h
index 54397d88..34c8bf96 100644
--- a/textscreen/textscreen.h
+++ b/textscreen/textscreen.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TEXTSCREEN_H
#define TEXTSCREEN_H
diff --git a/textscreen/txt_button.c b/textscreen/txt_button.c
index c8e3fc77..f8ca6210 100644
--- a/textscreen/txt_button.c
+++ b/textscreen/txt_button.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_button.h b/textscreen/txt_button.h
index 7c16c01b..c1631452 100644
--- a/textscreen/txt_button.h
+++ b/textscreen/txt_button.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_BUTTON_H
#define TXT_BUTTON_H
diff --git a/textscreen/txt_checkbox.c b/textscreen/txt_checkbox.c
index 3bd0a054..70e6fdc5 100644
--- a/textscreen/txt_checkbox.c
+++ b/textscreen/txt_checkbox.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_checkbox.h b/textscreen/txt_checkbox.h
index d9ba8d02..ec344e16 100644
--- a/textscreen/txt_checkbox.h
+++ b/textscreen/txt_checkbox.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_CHECKBOX_H
#define TXT_CHECKBOX_H
diff --git a/textscreen/txt_desktop.c b/textscreen/txt_desktop.c
index 31577ec8..fe0ae8ee 100644
--- a/textscreen/txt_desktop.c
+++ b/textscreen/txt_desktop.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdio.h>
#include <stdlib.h>
diff --git a/textscreen/txt_desktop.h b/textscreen/txt_desktop.h
index f98d4627..07164c89 100644
--- a/textscreen/txt_desktop.h
+++ b/textscreen/txt_desktop.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_DESKTOP_H
#define TXT_DESKTOP_H
diff --git a/textscreen/txt_dropdown.c b/textscreen/txt_dropdown.c
index 652c9a36..e49ebb33 100644
--- a/textscreen/txt_dropdown.c
+++ b/textscreen/txt_dropdown.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_dropdown.h b/textscreen/txt_dropdown.h
index 19b931d0..bb2f12b8 100644
--- a/textscreen/txt_dropdown.h
+++ b/textscreen/txt_dropdown.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_DROPDOWN_H
#define TXT_DROPDOWN_H
diff --git a/textscreen/txt_fileselect.c b/textscreen/txt_fileselect.c
index cec21937..9e535668 100644
--- a/textscreen/txt_fileselect.c
+++ b/textscreen/txt_fileselect.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2013 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Routines for selecting files.
//
-//-----------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
diff --git a/textscreen/txt_fileselect.h b/textscreen/txt_fileselect.h
index dc65643d..ffba4064 100644
--- a/textscreen/txt_fileselect.h
+++ b/textscreen/txt_fileselect.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2013 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Routines for selecting files, and the txt_fileselect_t widget.
//
-//-----------------------------------------------------------------------------
#ifndef TXT_FILESELECT_H
#define TXT_FILESELECT_H
diff --git a/textscreen/txt_font.h b/textscreen/txt_font.h
index a8d72622..ec88fe9d 100644
--- a/textscreen/txt_font.h
+++ b/textscreen/txt_font.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//---------------------------------------------------------------------------
//
-// Copyright (C) 2005,2006 Simon Howard
+// Copyright (C) 2005-2014 Simon Howard
// Copyright (C) 2002-2004 The DOSBox Team
//
// This program is free software; you can redistribute it and/or modify
@@ -14,16 +12,10 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
-//---------------------------------------------------------------------------
-//
// VGA font data
// Font data is from the DOSBox project (http://dosbox.sourceforge.net/)
//
-//---------------------------------------------------------------------------
#ifndef __FONT_H__
#define __FONT_H__
diff --git a/textscreen/txt_gui.c b/textscreen/txt_gui.c
index 09ba87ef..1a5275b6 100644
--- a/textscreen/txt_gui.c
+++ b/textscreen/txt_gui.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_gui.h b/textscreen/txt_gui.h
index e4504af8..bb41b23d 100644
--- a/textscreen/txt_gui.h
+++ b/textscreen/txt_gui.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Text mode emulation in SDL
//
-//-----------------------------------------------------------------------------
#ifndef TXT_GUI_H
#define TXT_GUI_H
diff --git a/textscreen/txt_inputbox.c b/textscreen/txt_inputbox.c
index df3bbbf7..b2acaa8b 100644
--- a/textscreen/txt_inputbox.c
+++ b/textscreen/txt_inputbox.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <ctype.h>
#include <stdio.h>
diff --git a/textscreen/txt_inputbox.h b/textscreen/txt_inputbox.h
index 1e270d97..eb05fb00 100644
--- a/textscreen/txt_inputbox.h
+++ b/textscreen/txt_inputbox.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_INPUTBOX_H
#define TXT_INPUTBOX_H
diff --git a/textscreen/txt_io.c b/textscreen/txt_io.c
index f7c9a7a4..ed25503c 100644
--- a/textscreen/txt_io.c
+++ b/textscreen/txt_io.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Text mode I/O functions, similar to C stdio
//
-//-----------------------------------------------------------------------------
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_io.h b/textscreen/txt_io.h
index 004fa562..55f56167 100644
--- a/textscreen/txt_io.h
+++ b/textscreen/txt_io.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Text mode emulation in SDL
//
-//-----------------------------------------------------------------------------
#ifndef TXT_IO_H
#define TXT_IO_H
diff --git a/textscreen/txt_label.c b/textscreen/txt_label.c
index 39ea0e16..79bd770d 100644
--- a/textscreen/txt_label.c
+++ b/textscreen/txt_label.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_label.h b/textscreen/txt_label.h
index c0a20bf2..458e7ff7 100644
--- a/textscreen/txt_label.h
+++ b/textscreen/txt_label.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_LABEL_H
#define TXT_LABEL_H
diff --git a/textscreen/txt_largefont.h b/textscreen/txt_largefont.h
index 16a98805..0fe54b0b 100644
--- a/textscreen/txt_largefont.h
+++ b/textscreen/txt_largefont.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//---------------------------------------------------------------------------
//
-// Copyright (C) 2012 Simon Howard
+// Copyright (C) 2005-2014 Simon Howard
// Copyright (C) 2002-2004 The DOSBox Team
//
// This program is free software; you can redistribute it and/or modify
@@ -14,18 +12,12 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-//---------------------------------------------------------------------------
//
// "High resolution" font.
//
// This is an enhanced version of the 8x16 font from txt_font.h that
// has been doubled in size to 16x32, and then manually tweaked.
//
-//---------------------------------------------------------------------------
static uint8_t large_font_data[] =
{
diff --git a/textscreen/txt_main.h b/textscreen/txt_main.h
index d882b521..02a7cdda 100644
--- a/textscreen/txt_main.h
+++ b/textscreen/txt_main.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Base interface that abstracts the text mode screen.
//
-//-----------------------------------------------------------------------------
#ifndef TXT_MAIN_H
#define TXT_MAIN_H
diff --git a/textscreen/txt_radiobutton.c b/textscreen/txt_radiobutton.c
index fa722c13..0a37b828 100644
--- a/textscreen/txt_radiobutton.c
+++ b/textscreen/txt_radiobutton.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_radiobutton.h b/textscreen/txt_radiobutton.h
index 858f1bb3..dd751f23 100644
--- a/textscreen/txt_radiobutton.h
+++ b/textscreen/txt_radiobutton.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_RADIOBUTTON_H
#define TXT_RADIOBUTTON_H
diff --git a/textscreen/txt_scrollpane.c b/textscreen/txt_scrollpane.c
index 3fd32124..e1f2d3cb 100644
--- a/textscreen/txt_scrollpane.c
+++ b/textscreen/txt_scrollpane.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2009 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <ctype.h>
#include <stdio.h>
diff --git a/textscreen/txt_scrollpane.h b/textscreen/txt_scrollpane.h
index 94f81dc1..8ae95e47 100644
--- a/textscreen/txt_scrollpane.h
+++ b/textscreen/txt_scrollpane.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2009 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_SCROLLPANE_H
#define TXT_SCROLLPANE_H
diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c
index 26b4a361..5576a151 100644
--- a/textscreen/txt_sdl.c
+++ b/textscreen/txt_sdl.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Text mode emulation in SDL
//
-//-----------------------------------------------------------------------------
#include "SDL.h"
diff --git a/textscreen/txt_sdl.h b/textscreen/txt_sdl.h
index ed131970..629dc585 100644
--- a/textscreen/txt_sdl.h
+++ b/textscreen/txt_sdl.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2005,2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,16 +11,9 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Text mode emulation in SDL
//
-//-----------------------------------------------------------------------------
#ifndef TXT_SDL_H
#define TXT_SDL_H
diff --git a/textscreen/txt_separator.c b/textscreen/txt_separator.c
index 25d6f7bc..d59a81fa 100644
--- a/textscreen/txt_separator.c
+++ b/textscreen/txt_separator.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_separator.h b/textscreen/txt_separator.h
index f693d70e..da88f611 100644
--- a/textscreen/txt_separator.h
+++ b/textscreen/txt_separator.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_SEPARATOR_H
#define TXT_SEPARATOR_H
diff --git a/textscreen/txt_smallfont.h b/textscreen/txt_smallfont.h
index 7fd72578..e152a4cd 100644
--- a/textscreen/txt_smallfont.h
+++ b/textscreen/txt_smallfont.h
@@ -1,5 +1,3 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
// Copyright (c) 1999, Thomas A. Fine
//
@@ -12,7 +10,7 @@
//
// ----
//
-// Copyright (C) 2009 Simon Howard
+// Copyright (C) 2005-2014 Simon Howard
// Copyright (C) 2002-2004 The DOSBox Team
//
// This program is free software; you can redistribute it and/or modify
@@ -25,11 +23,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-//
-//-----------------------------------------------------------------------------
//
// Small (4x8) bitmap font for low resolution displays.
//
@@ -37,7 +30,6 @@
// ASCII only; this has been extended to the full Extended ASCII range with
// scaled-down versions of the full-size DOS font (txt_font.h)
//
-//-----------------------------------------------------------------------------
static unsigned char small_font_data[] = {
diff --git a/textscreen/txt_spinctrl.c b/textscreen/txt_spinctrl.c
index 665edb05..605c0848 100644
--- a/textscreen/txt_spinctrl.c
+++ b/textscreen/txt_spinctrl.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <ctype.h>
#include <stdio.h>
diff --git a/textscreen/txt_spinctrl.h b/textscreen/txt_spinctrl.h
index 006a0471..855527bb 100644
--- a/textscreen/txt_spinctrl.h
+++ b/textscreen/txt_spinctrl.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_SPINCONTROL_H
#define TXT_SPINCONTROL_H
diff --git a/textscreen/txt_strut.c b/textscreen/txt_strut.c
index 367e798a..4c0c7658 100644
--- a/textscreen/txt_strut.c
+++ b/textscreen/txt_strut.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_strut.h b/textscreen/txt_strut.h
index 3dc8db9a..f9392355 100644
--- a/textscreen/txt_strut.h
+++ b/textscreen/txt_strut.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_STRUT_H
#define TXT_STRUT_H
diff --git a/textscreen/txt_table.c b/textscreen/txt_table.c
index 573df428..218fadec 100644
--- a/textscreen/txt_table.c
+++ b/textscreen/txt_table.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdarg.h>
#include <stdlib.h>
diff --git a/textscreen/txt_table.h b/textscreen/txt_table.h
index 0166abee..6d356cc9 100644
--- a/textscreen/txt_table.h
+++ b/textscreen/txt_table.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_TABLE_H
#define TXT_TABLE_H
diff --git a/textscreen/txt_utf8.c b/textscreen/txt_utf8.c
index b7b2240c..4d5337b2 100644
--- a/textscreen/txt_utf8.c
+++ b/textscreen/txt_utf8.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2012 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdio.h>
#include <stdlib.h>
diff --git a/textscreen/txt_utf8.h b/textscreen/txt_utf8.h
index 123cae97..a2ee96dc 100644
--- a/textscreen/txt_utf8.h
+++ b/textscreen/txt_utf8.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2012 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_UTF8_H
#define TXT_UTF8_H
diff --git a/textscreen/txt_widget.c b/textscreen/txt_widget.c
index e0303531..24deda0e 100644
--- a/textscreen/txt_widget.c
+++ b/textscreen/txt_widget.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_widget.h b/textscreen/txt_widget.h
index 3bde760d..1857d732 100644
--- a/textscreen/txt_widget.h
+++ b/textscreen/txt_widget.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_WIDGET_H
#define TXT_WIDGET_H
diff --git a/textscreen/txt_window.c b/textscreen/txt_window.c
index 0eded4bd..1d925beb 100644
--- a/textscreen/txt_window.c
+++ b/textscreen/txt_window.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <stdarg.h>
diff --git a/textscreen/txt_window.h b/textscreen/txt_window.h
index 8b1e1fb9..4d1ec991 100644
--- a/textscreen/txt_window.h
+++ b/textscreen/txt_window.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_WINDOW_H
#define TXT_WINDOW_H
diff --git a/textscreen/txt_window_action.c b/textscreen/txt_window_action.c
index 8a09409b..a5fe84dc 100644
--- a/textscreen/txt_window_action.c
+++ b/textscreen/txt_window_action.c
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#include <stdlib.h>
#include <string.h>
diff --git a/textscreen/txt_window_action.h b/textscreen/txt_window_action.h
index 7f93dd48..08c1e1ee 100644
--- a/textscreen/txt_window_action.h
+++ b/textscreen/txt_window_action.h
@@ -1,7 +1,5 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright(C) 2006 Simon Howard
+// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -13,11 +11,6 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-// 02111-1307, USA.
-//
#ifndef TXT_WINDOW_ACTION_H
#define TXT_WINDOW_ACTION_H