diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-21 03:42:24 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-10-02 02:51:39 +0200 |
commit | 61602b95cecf829463653d55fe7b376c97445b8c (patch) | |
tree | 4978bbf81bf617154b7b8056d3a4f208ddb0872b /tdecore | |
parent | 38ed45d3b9c64d38888b967f63b92e6c69141211 (diff) | |
download | tdelibs-61602b95cecf829463653d55fe7b376c97445b8c.tar.gz tdelibs-61602b95cecf829463653d55fe7b376c97445b8c.zip |
Add GPL v3 license to TDEAboutData options
(cherry picked from commit 85c0e479c1d997b4127748ee6a2c749378940046)
Diffstat (limited to 'tdecore')
-rw-r--r-- | tdecore/tdeaboutdata.cpp | 8 | ||||
-rw-r--r-- | tdecore/tdeaboutdata.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tdecore/tdeaboutdata.cpp b/tdecore/tdeaboutdata.cpp index bf8538152..d337db945 100644 --- a/tdecore/tdeaboutdata.cpp +++ b/tdecore/tdeaboutdata.cpp @@ -424,6 +424,14 @@ TDEAboutData::license() const l = "LGPL v2"; f = locate("data", "LICENSES/LGPL_V2"); break; + case License_GPL_V3: + l = "GPL v3"; + f = locate("data", "LICENSES/GPL_V3"); + break; + case License_LGPL_V3: + l = "LGPL v3"; + f = locate("data", "LICENSES/LGPL_V3"); + break; case License_BSD: l = "BSD License"; f = locate("data", "LICENSES/BSD"); diff --git a/tdecore/tdeaboutdata.h b/tdecore/tdeaboutdata.h index dc758824e..11c27cfd3 100644 --- a/tdecore/tdeaboutdata.h +++ b/tdecore/tdeaboutdata.h @@ -198,6 +198,8 @@ class TDECORE_EXPORT TDEAboutData License_Artistic = 4, License_QPL = 5, License_QPL_V1_0 = 5 + License_GPL_V3 = 6, + License_LGPL_V3 = 6, }; public: |