aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathias <mathias>2005-01-24 17:35:34 (GMT)
committermathias <mathias>2005-01-24 17:35:34 (GMT)
commit297dae013716011a32b585e6d88357d1eb0dbecb (patch)
tree9b9ba963ec9171ff86635f7e555210729eb385dc
parent7f9e13bc9991fbf93c13191df8e17afad3515b3f (diff)
downloadfluxbox-297dae013716011a32b585e6d88357d1eb0dbecb.zip
fluxbox-297dae013716011a32b585e6d88357d1eb0dbecb.tar.bz2
copyright dates
-rw-r--r--src/ArrowButton.cc2
-rw-r--r--src/ArrowButton.hh2
-rw-r--r--src/AtomHandler.hh4
-rw-r--r--src/BoolMenuItem.hh2
-rw-r--r--src/BorderTheme.cc24
-rw-r--r--src/BorderTheme.hh2
-rw-r--r--src/FbCommandFactory.cc2
-rw-r--r--src/FbCommandFactory.hh2
-rw-r--r--src/FbCommands.cc2
-rw-r--r--src/FbCommands.hh2
-rw-r--r--src/FbRootWindow.cc2
-rw-r--r--src/FbRootWindow.hh2
-rw-r--r--src/WorkspaceCmd.cc2
-rw-r--r--src/WorkspaceCmd.hh2
14 files changed, 38 insertions, 14 deletions
diff --git a/src/ArrowButton.cc b/src/ArrowButton.cc
index c6d01c2..c7daa81 100644
--- a/src/ArrowButton.cc
+++ b/src/ArrowButton.cc
@@ -1,5 +1,5 @@
1// ArrowButton.cc for Fluxbox Window Manager 1// ArrowButton.cc for Fluxbox Window Manager
2// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2002-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/ArrowButton.hh b/src/ArrowButton.hh
index ee0a364..bb41e1b 100644
--- a/src/ArrowButton.hh
+++ b/src/ArrowButton.hh
@@ -1,5 +1,5 @@
1// ArrowButton.hh for Fluxbox Window Manager 1// ArrowButton.hh for Fluxbox Window Manager
2// Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2002-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/AtomHandler.hh b/src/AtomHandler.hh
index 1135ffb..cd02754 100644
--- a/src/AtomHandler.hh
+++ b/src/AtomHandler.hh
@@ -1,6 +1,6 @@
1// AtomHandler for fluxbox 1// AtomHandler for fluxbox
2// Copyright (c) 2002-2004 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2002-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 2003-2004 Simon Bowden (rathnor at users.sourceforge.net) 3// 2003-2005 Simon Bowden (rathnor at users.sourceforge.net)
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation 6// to deal in the Software without restriction, including without limitation
diff --git a/src/BoolMenuItem.hh b/src/BoolMenuItem.hh
index 7e20c24..b81b0e5 100644
--- a/src/BoolMenuItem.hh
+++ b/src/BoolMenuItem.hh
@@ -1,5 +1,5 @@
1// BoolMenuItem.hh for Fluxbox Window Manager 1// BoolMenuItem.hh for Fluxbox Window Manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/BorderTheme.cc b/src/BorderTheme.cc
index fe387a1..eef3d48 100644
--- a/src/BorderTheme.cc
+++ b/src/BorderTheme.cc
@@ -1,3 +1,27 @@
1// BorderTheme.cc
2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4//
5// Permission is hereby granted, free of charge, to any person obtaining a
6// copy of this software and associated documentation files (the "Software"),
7// to deal in the Software without restriction, including without limitation
8// the rights to use, copy, modify, merge, publish, distribute, sublicense,
9// and/or sell copies of the Software, and to permit persons to whom the
10// Software is furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE.
22
23// $Id$
24
1#include "BorderTheme.hh" 25#include "BorderTheme.hh"
2 26
3BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name, 27BorderTheme::BorderTheme(FbTk::Theme &theme, const std::string &name,
diff --git a/src/BorderTheme.hh b/src/BorderTheme.hh
index f9ed59d..8de8905 100644
--- a/src/BorderTheme.hh
+++ b/src/BorderTheme.hh
@@ -1,5 +1,5 @@
1// BorderTheme.hh 1// BorderTheme.hh
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net) 3// and Simon Bowden (rathnor at users.sourceforge.net)
4// 4//
5// Permission is hereby granted, free of charge, to any person obtaining a 5// Permission is hereby granted, free of charge, to any person obtaining a
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc
index d3e3757..9c61772 100644
--- a/src/FbCommandFactory.cc
+++ b/src/FbCommandFactory.cc
@@ -1,5 +1,5 @@
1// FbCommandFactory.cc for Fluxbox Window manager 1// FbCommandFactory.cc for Fluxbox Window manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net) 3// and Simon Bowden (rathnor at users.sourceforge.net)
4// 4//
5// Permission is hereby granted, free of charge, to any person obtaining a 5// Permission is hereby granted, free of charge, to any person obtaining a
diff --git a/src/FbCommandFactory.hh b/src/FbCommandFactory.hh
index d1fd797..1014a15 100644
--- a/src/FbCommandFactory.hh
+++ b/src/FbCommandFactory.hh
@@ -1,5 +1,5 @@
1// FbCommandFactory.hh for Fluxbox Window manager 1// FbCommandFactory.hh for Fluxbox Window manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net) 3// and Simon Bowden (rathnor at users.sourceforge.net)
4// 4//
5// Permission is hereby granted, free of charge, to any person obtaining a 5// Permission is hereby granted, free of charge, to any person obtaining a
diff --git a/src/FbCommands.cc b/src/FbCommands.cc
index 8d57456..301bee5 100644
--- a/src/FbCommands.cc
+++ b/src/FbCommands.cc
@@ -1,5 +1,5 @@
1// FbCommands.cc for Fluxbox 1// FbCommands.cc for Fluxbox
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/FbCommands.hh b/src/FbCommands.hh
index 917ab30..e91fcda 100644
--- a/src/FbCommands.hh
+++ b/src/FbCommands.hh
@@ -1,5 +1,5 @@
1// FbCommands.hh for Fluxbox 1// FbCommands.hh for Fluxbox
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/FbRootWindow.cc b/src/FbRootWindow.cc
index 7cec234..569f845 100644
--- a/src/FbRootWindow.cc
+++ b/src/FbRootWindow.cc
@@ -1,5 +1,5 @@
1// FbRootWindow.cc 1// FbRootWindow.cc
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen<at>users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/FbRootWindow.hh b/src/FbRootWindow.hh
index 5ef72fe..6735693 100644
--- a/src/FbRootWindow.hh
+++ b/src/FbRootWindow.hh
@@ -1,5 +1,5 @@
1// FbRootWindow.hh for fluxbox 1// FbRootWindow.hh for fluxbox
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
diff --git a/src/WorkspaceCmd.cc b/src/WorkspaceCmd.cc
index 44c55f1..7bc8ae1 100644
--- a/src/WorkspaceCmd.cc
+++ b/src/WorkspaceCmd.cc
@@ -1,5 +1,5 @@
1// WorkspaceCmd.cc for Fluxbox - an X11 Window manager 1// WorkspaceCmd.cc for Fluxbox - an X11 Window manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen{<a*t>}users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net) 3// and Simon Bowden (rathnor at users.sourceforge.net)
4// 4//
5// Permission is hereby granted, free of charge, to any person obtaining a 5// Permission is hereby granted, free of charge, to any person obtaining a
diff --git a/src/WorkspaceCmd.hh b/src/WorkspaceCmd.hh
index 5a16c40..40aafe6 100644
--- a/src/WorkspaceCmd.hh
+++ b/src/WorkspaceCmd.hh
@@ -1,5 +1,5 @@
1// WorkspaceCmd.hh for Fluxbox - an X11 Window manager 1// WorkspaceCmd.hh for Fluxbox - an X11 Window manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen{<a*t>}users.sourceforge.net) 2// Copyright (c) 2003-2005 Henrik Kinnunen (fluxgen at fluxbox dot org)
3// and Simon Bowden (rathnor at users.sourceforge.net) 3// and Simon Bowden (rathnor at users.sourceforge.net)
4// 4//
5// Permission is hereby granted, free of charge, to any person obtaining a 5// Permission is hereby granted, free of charge, to any person obtaining a