diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2011-01-28 23:46:31 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2011-01-28 23:46:31 +0100 |
| commit | 8b4d3a47a6dce83d9455e59c84946e3fee38f79a (patch) | |
| tree | 744b1b91326240625cbf7e92d3386b66f5f92d05 | |
| parent | 70cf7c0f25d482e3e90285f8045c6a442268abbe (diff) | |
Copyright notices updated.
Yes, this is a real patch!
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | src/elements.h | 2 | ||||
| -rw-r--r-- | src/generators/latex/text_g.cpp | 2 | ||||
| -rw-r--r-- | src/generators/latex/text_g.h | 2 | ||||
| -rw-r--r-- | src/generators/latex_g.cpp | 2 | ||||
| -rw-r--r-- | src/generators/latex_g.h | 2 | ||||
| -rw-r--r-- | src/main.cpp | 4 | ||||
| -rw-r--r-- | src/parser/document_p.cpp | 2 | ||||
| -rw-r--r-- | src/parser/document_p.h | 2 | ||||
| -rw-r--r-- | src/parser/text_p.cpp | 2 | ||||
| -rw-r--r-- | src/parser/text_p.h | 2 |
11 files changed, 12 insertions, 12 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/elements.h b/src/elements.h index c0e392c..36d3388 100644 --- a/src/elements.h +++ b/src/elements.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/generators/latex/text_g.cpp b/src/generators/latex/text_g.cpp index 56b4191..015608d 100644 --- a/src/generators/latex/text_g.cpp +++ b/src/generators/latex/text_g.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/generators/latex/text_g.h b/src/generators/latex/text_g.h index 90d88b8..a2174e7 100644 --- a/src/generators/latex/text_g.h +++ b/src/generators/latex/text_g.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/generators/latex_g.cpp b/src/generators/latex_g.cpp index 089e8a9..a8d5191 100644 --- a/src/generators/latex_g.cpp +++ b/src/generators/latex_g.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/generators/latex_g.h b/src/generators/latex_g.h index 965ba47..29f1835 100644 --- a/src/generators/latex_g.h +++ b/src/generators/latex_g.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/main.cpp b/src/main.cpp index f4113fd..f4fcc70 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -25,7 +25,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. namespace ka = boost::spirit::karma; namespace qi = boost::spirit::qi; -int main(int argc, char **argv) { +int main(int argc, char** argv) { using namespace std; if (argc != 2) diff --git a/src/parser/document_p.cpp b/src/parser/document_p.cpp index 25679e9..208e1f1 100644 --- a/src/parser/document_p.cpp +++ b/src/parser/document_p.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser/document_p.h b/src/parser/document_p.h index d2a7c44..f3b66cb 100644 --- a/src/parser/document_p.h +++ b/src/parser/document_p.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser/text_p.cpp b/src/parser/text_p.cpp index af454fe..0701691 100644 --- a/src/parser/text_p.cpp +++ b/src/parser/text_p.cpp @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser/text_p.h b/src/parser/text_p.h index 3b99ab2..d9fe7a0 100644 --- a/src/parser/text_p.h +++ b/src/parser/text_p.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010, Grégoire Duchêne <gduchene@fastmail.net> +Copyright (c) 2010, 2011, Grégoire Duchêne <gduchene@fastmail.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above |
