diff options
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: |