diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-21 03:42:24 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-21 03:42:33 -0500 |
commit | 85c0e479c1d997b4127748ee6a2c749378940046 (patch) | |
tree | 76b889bd10de960f058d0111d2a6ad740264b995 /tdecore/tdeaboutdata.cpp | |
parent | c0cca8ca9524d6d91bce4ead3bc2595dda94ae65 (diff) | |
download | tdelibs-85c0e479c1d997b4127748ee6a2c749378940046.tar.gz tdelibs-85c0e479c1d997b4127748ee6a2c749378940046.zip |
Add GPL v3 license to TDEAboutData options
Diffstat (limited to 'tdecore/tdeaboutdata.cpp')
-rw-r--r-- | tdecore/tdeaboutdata.cpp | 8 |
1 files changed, 8 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"); |