aboutsummaryrefslogtreecommitdiffstats
path: root/src/utility/encoder
diff options
context:
space:
mode:
Diffstat (limited to 'src/utility/encoder')
-rw-r--r--src/utility/encoder/b64Encoder.cpp4
-rw-r--r--src/utility/encoder/binaryEncoder.cpp4
-rw-r--r--src/utility/encoder/defaultEncoder.cpp4
-rw-r--r--src/utility/encoder/eightBitEncoder.cpp4
-rw-r--r--src/utility/encoder/encoder.cpp4
-rw-r--r--src/utility/encoder/encoderFactory.cpp4
-rw-r--r--src/utility/encoder/qpEncoder.cpp4
-rw-r--r--src/utility/encoder/sevenBitEncoder.cpp4
-rw-r--r--src/utility/encoder/uuEncoder.cpp4
9 files changed, 18 insertions, 18 deletions
diff --git a/src/utility/encoder/b64Encoder.cpp b/src/utility/encoder/b64Encoder.cpp
index c4ba2b39..58ef3200 100644
--- a/src/utility/encoder/b64Encoder.cpp
+++ b/src/utility/encoder/b64Encoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/binaryEncoder.cpp b/src/utility/encoder/binaryEncoder.cpp
index 2bc77d27..81da7904 100644
--- a/src/utility/encoder/binaryEncoder.cpp
+++ b/src/utility/encoder/binaryEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/defaultEncoder.cpp b/src/utility/encoder/defaultEncoder.cpp
index db833c85..4d0ffb5d 100644
--- a/src/utility/encoder/defaultEncoder.cpp
+++ b/src/utility/encoder/defaultEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/eightBitEncoder.cpp b/src/utility/encoder/eightBitEncoder.cpp
index 88f07bc4..25ca6c54 100644
--- a/src/utility/encoder/eightBitEncoder.cpp
+++ b/src/utility/encoder/eightBitEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/encoder.cpp b/src/utility/encoder/encoder.cpp
index 893ed4fc..85b37086 100644
--- a/src/utility/encoder/encoder.cpp
+++ b/src/utility/encoder/encoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/encoderFactory.cpp b/src/utility/encoder/encoderFactory.cpp
index 9d7c1070..428788d8 100644
--- a/src/utility/encoder/encoderFactory.cpp
+++ b/src/utility/encoder/encoderFactory.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/qpEncoder.cpp b/src/utility/encoder/qpEncoder.cpp
index 737d488a..c3a8c6d3 100644
--- a/src/utility/encoder/qpEncoder.cpp
+++ b/src/utility/encoder/qpEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/sevenBitEncoder.cpp b/src/utility/encoder/sevenBitEncoder.cpp
index 812afa90..40f0fbfe 100644
--- a/src/utility/encoder/sevenBitEncoder.cpp
+++ b/src/utility/encoder/sevenBitEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
diff --git a/src/utility/encoder/uuEncoder.cpp b/src/utility/encoder/uuEncoder.cpp
index 0e72599b..d2974e63 100644
--- a/src/utility/encoder/uuEncoder.cpp
+++ b/src/utility/encoder/uuEncoder.cpp
@@ -1,10 +1,10 @@
//
// VMime library (http://www.vmime.org)
-// Copyright (C) 2002-2008 Vincent Richard <[email protected]>
+// Copyright (C) 2002-2009 Vincent Richard <[email protected]>
//
// 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 the Free Software Foundation; either version 2 of
+// published by the Free Software Foundation; either version 3 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,