SF.net SVN: geany: [1188] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Jan 14 17:36:43 UTC 2007


Revision: 1188
          http://svn.sourceforge.net/geany/?rev=1188&view=rev
Author:   eht16
Date:     2007-01-14 09:36:42 -0800 (Sun, 14 Jan 2007)

Log Message:
-----------
Updated copyright information.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/README
    trunk/geany_private.rc
    trunk/src/about.c
    trunk/src/about.h
    trunk/src/build.c
    trunk/src/build.h
    trunk/src/callbacks.c
    trunk/src/callbacks.h
    trunk/src/dialogs.c
    trunk/src/dialogs.h
    trunk/src/document.c
    trunk/src/document.h
    trunk/src/encodings.c
    trunk/src/encodings.h
    trunk/src/filetypes.c
    trunk/src/filetypes.h
    trunk/src/gb.c
    trunk/src/geany.h
    trunk/src/highlighting.c
    trunk/src/highlighting.h
    trunk/src/images.c
    trunk/src/keybindings.c
    trunk/src/keybindings.h
    trunk/src/keyfile.c
    trunk/src/keyfile.h
    trunk/src/main.c
    trunk/src/main.h
    trunk/src/msgwindow.c
    trunk/src/msgwindow.h
    trunk/src/notebook.c
    trunk/src/notebook.h
    trunk/src/prefs.c
    trunk/src/prefs.h
    trunk/src/sci_cb.c
    trunk/src/sci_cb.h
    trunk/src/sciwrappers.c
    trunk/src/sciwrappers.h
    trunk/src/search.c
    trunk/src/search.h
    trunk/src/socket.c
    trunk/src/socket.h
    trunk/src/symbols.c
    trunk/src/symbols.h
    trunk/src/templates.c
    trunk/src/templates.h
    trunk/src/tools.c
    trunk/src/tools.h
    trunk/src/treeviews.c
    trunk/src/treeviews.h
    trunk/src/ui_utils.c
    trunk/src/ui_utils.h
    trunk/src/utils.c
    trunk/src/utils.h
    trunk/src/vte.c
    trunk/src/vte.h
    trunk/src/win32.c
    trunk/src/win32.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/ChangeLog	2007-01-14 17:36:42 UTC (rev 1188)
@@ -10,6 +10,8 @@
    Applied patch from Jeff Pohlmeyer to add an option for using spaces
    or tabulators when inserting some whitespace.
  * src/about.c: Updated copyright information.
+ * geany_private.rc, README, src/*.c, src/*.h:
+   Updated copyright information.
 
 
 2007-01-14  Nick Treleaven  <nick.treleaven at btinternet.com>

Modified: trunk/README
===================================================================
--- trunk/README	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/README	2007-01-14 17:36:42 UTC (rev 1188)
@@ -91,5 +91,5 @@
 
 
 --
-2005-2006 by Enrico Tröger, Nick Treleaven and Frank Lanitz
+2005-2007 by Enrico Tröger, Nick Treleaven and Frank Lanitz
 enrico.troeger at uvena.de

Modified: trunk/geany_private.rc
===================================================================
--- trunk/geany_private.rc	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/geany_private.rc	2007-01-14 17:36:42 UTC (rev 1188)
@@ -15,9 +15,9 @@
 		 {
 			 VALUE "CompanyName", ""
 			 VALUE "FileVersion", "0.11svn"
-			 VALUE "FileDescription", "Small and lightweight IDE (built using mingw gcc)"
+			 VALUE "FileDescription", "Geany"
 			 VALUE "InternalName", "geany"
-			 VALUE "LegalCopyright", "Copyright 2005-2006 by Enrico Troeger"
+			 VALUE "LegalCopyright", "Copyright 2005-2007 by Enrico Troeger"
 			 VALUE "LegalTrademarks", ""
 			 VALUE "OriginalFilename", "geany"
 			 VALUE "ProductName", "geany"

Modified: trunk/src/about.c
===================================================================
--- trunk/src/about.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/about.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      about.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/about.h
===================================================================
--- trunk/src/about.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/about.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      about.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/build.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      build.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/build.h
===================================================================
--- trunk/src/build.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/build.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      build.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/callbacks.c
===================================================================
--- trunk/src/callbacks.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/callbacks.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      callbacks.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/callbacks.h
===================================================================
--- trunk/src/callbacks.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/callbacks.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      callbacks.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/dialogs.c
===================================================================
--- trunk/src/dialogs.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/dialogs.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      dialogs.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/dialogs.h
===================================================================
--- trunk/src/dialogs.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/dialogs.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      dialogs.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/document.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      document.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/document.h
===================================================================
--- trunk/src/document.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/document.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      document.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/encodings.c
===================================================================
--- trunk/src/encodings.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/encodings.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      encodings.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/encodings.h
===================================================================
--- trunk/src/encodings.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/encodings.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      encodings.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/filetypes.c
===================================================================
--- trunk/src/filetypes.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/filetypes.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      filetypes.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/filetypes.h
===================================================================
--- trunk/src/filetypes.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/filetypes.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      filetypes.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/gb.c
===================================================================
--- trunk/src/gb.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/gb.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      gb.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/geany.h
===================================================================
--- trunk/src/geany.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/geany.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      geany.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/highlighting.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      highlighting.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/highlighting.h
===================================================================
--- trunk/src/highlighting.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/highlighting.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      highlighting.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/images.c
===================================================================
--- trunk/src/images.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/images.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      images.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/keybindings.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      keybindings.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/keybindings.h
===================================================================
--- trunk/src/keybindings.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/keybindings.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      keybindings.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/keyfile.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      keyfile.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/keyfile.h
===================================================================
--- trunk/src/keyfile.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/keyfile.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      keyfile.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/main.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      main.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/main.h
===================================================================
--- trunk/src/main.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/main.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      main.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/msgwindow.c
===================================================================
--- trunk/src/msgwindow.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/msgwindow.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      msgwindow.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/msgwindow.h
===================================================================
--- trunk/src/msgwindow.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/msgwindow.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      msgwindow.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/notebook.c
===================================================================
--- trunk/src/notebook.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/notebook.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      notebook.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/notebook.h
===================================================================
--- trunk/src/notebook.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/notebook.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      notebook.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/prefs.c
===================================================================
--- trunk/src/prefs.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/prefs.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      prefs.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/prefs.h
===================================================================
--- trunk/src/prefs.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/prefs.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      prefs.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/sci_cb.c
===================================================================
--- trunk/src/sci_cb.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/sci_cb.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      sci_cb.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/sci_cb.h
===================================================================
--- trunk/src/sci_cb.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/sci_cb.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      sci_cb.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/sciwrappers.c
===================================================================
--- trunk/src/sciwrappers.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/sciwrappers.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      sciwrappers.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/sciwrappers.h
===================================================================
--- trunk/src/sciwrappers.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/sciwrappers.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      sciwrappers.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/search.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      search.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/search.h
===================================================================
--- trunk/src/search.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/search.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      search.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/socket.c
===================================================================
--- trunk/src/socket.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/socket.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      socket.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/socket.h
===================================================================
--- trunk/src/socket.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/socket.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      socket.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/symbols.c
===================================================================
--- trunk/src/symbols.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/symbols.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      symbols.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/symbols.h
===================================================================
--- trunk/src/symbols.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/symbols.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      symbols.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/templates.c
===================================================================
--- trunk/src/templates.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/templates.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      templates.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/templates.h
===================================================================
--- trunk/src/templates.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/templates.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      templates.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/tools.c
===================================================================
--- trunk/src/tools.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/tools.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      tools.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/tools.h
===================================================================
--- trunk/src/tools.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/tools.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      tools.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/treeviews.c
===================================================================
--- trunk/src/treeviews.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/treeviews.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      treeviews.c
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/treeviews.h
===================================================================
--- trunk/src/treeviews.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/treeviews.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      treeviws.h
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/ui_utils.c
===================================================================
--- trunk/src/ui_utils.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/ui_utils.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      ui_utils.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/ui_utils.h
===================================================================
--- trunk/src/ui_utils.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/ui_utils.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,8 +1,8 @@
 /*
  *      ui_utils.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
- *      Copyright 2006 Nick Treleaven <nick.treleaven at btinternet.com>
+ *      Copyright 2006-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/utils.c
===================================================================
--- trunk/src/utils.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/utils.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      utils.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/utils.h
===================================================================
--- trunk/src/utils.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/utils.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,7 @@
 /*
  *      utils.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2005-2007 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
  *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify

Modified: trunk/src/vte.c
===================================================================
--- trunk/src/vte.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/vte.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      vte.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/vte.h
===================================================================
--- trunk/src/vte.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/vte.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      vte.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/win32.c
===================================================================
--- trunk/src/win32.c	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/win32.c	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      win32.c - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by

Modified: trunk/src/win32.h
===================================================================
--- trunk/src/win32.h	2007-01-14 17:13:38 UTC (rev 1187)
+++ trunk/src/win32.h	2007-01-14 17:36:42 UTC (rev 1188)
@@ -1,7 +1,8 @@
 /*
  *      win32.h - this file is part of Geany, a fast and lightweight IDE
  *
- *      Copyright 2006 Enrico Troeger <enrico.troeger at uvena.de>
+ *      Copyright 2005-2007 Enrico Tröger <enrico.troeger at uvena.de>
+ *      Copyright 2006-2007 Nick Treleaven <nick.treleaven at btinternet.com>
  *
  *      This program is free software; you can redistribute it and/or modify
  *      it under the terms of the GNU General Public License as published by


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list