From 04372041e1f4c8aa17695deaf9e591e512a47330 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 29 Oct 2018 15:24:12 +0100 Subject: [PATCH] leave license field and url of a Part container empty to avoid possible confusion with imported 3rd-party STEP/IGES models --- src/App/Part.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App/Part.cpp b/src/App/Part.cpp index 63c29fb7de..9d25134ac1 100644 --- a/src/App/Part.cpp +++ b/src/App/Part.cpp @@ -54,9 +54,9 @@ Part::Part(void) ADD_PROPERTY_TYPE(Id, (""), 0, App::Prop_None, "ID (Part-Number) of the Item"); ADD_PROPERTY_TYPE(Uid, (id), 0, App::Prop_None, "UUID of the Item"); - // license stuff - ADD_PROPERTY_TYPE(License, ("CC BY 3.0"), 0, App::Prop_None, "License string of the Item"); - ADD_PROPERTY_TYPE(LicenseURL, ("http://creativecommons.org/licenses/by/3.0/"), 0, App::Prop_None, "URL to the license text/contract"); + // license stuff (leave them empty to avoid confusion with imported 3rd party STEP/IGES files) + ADD_PROPERTY_TYPE(License, (""), 0, App::Prop_None, "License string of the Item"); + ADD_PROPERTY_TYPE(LicenseURL, (""), 0, App::Prop_None, "URL to the license text/contract"); // color and appearance ADD_PROPERTY(Color, (1.0, 1.0, 1.0, 1.0)); // set transparent -> not used