diff options
author | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
---|---|---|
committer | Jan Andre Ikenmeyer <jan@ikenmeyer.eu> | 2018-11-19 14:47:27 +0100 |
commit | 1d6fe65401383bd01d30368d32eedcd908fa79ad (patch) | |
tree | 903ebb4fb5ebd492dc63d4f21c522b4f23a85d7e /components/gfx/text | |
parent | a1a14459c141afc6ac6771b8a6c9ca374537edf2 (diff) | |
download | servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.tar.gz servo-1d6fe65401383bd01d30368d32eedcd908fa79ad.zip |
Update MPL license to https (part 4)
Diffstat (limited to 'components/gfx/text')
-rw-r--r-- | components/gfx/text/glyph.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/mod.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/shaping/harfbuzz.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/shaping/mod.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/text_run.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/util.rs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/components/gfx/text/glyph.rs b/components/gfx/text/glyph.rs index b72facdb162..c5dc268165e 100644 --- a/components/gfx/text/glyph.rs +++ b/components/gfx/text/glyph.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use app_units::Au; use euclid::Point2D; diff --git a/components/gfx/text/mod.rs b/components/gfx/text/mod.rs index c65359ae1dd..b797f78dc03 100644 --- a/components/gfx/text/mod.rs +++ b/components/gfx/text/mod.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ pub use crate::text::shaping::Shaper; pub use crate::text::text_run::TextRun; diff --git a/components/gfx/text/shaping/harfbuzz.rs b/components/gfx/text/shaping/harfbuzz.rs index ecd575d9b91..acbf8669be8 100644 --- a/components/gfx/text/shaping/harfbuzz.rs +++ b/components/gfx/text/shaping/harfbuzz.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ #![allow(unsafe_code)] diff --git a/components/gfx/text/shaping/mod.rs b/components/gfx/text/shaping/mod.rs index 9f78c0d75ac..538f7b533f1 100644 --- a/components/gfx/text/shaping/mod.rs +++ b/components/gfx/text/shaping/mod.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ //! Shaper encapsulates a specific shaper, such as Harfbuzz, //! Uniscribe, Pango, or Coretext. diff --git a/components/gfx/text/text_run.rs b/components/gfx/text/text_run.rs index 591832de459..17c2fdc27fc 100644 --- a/components/gfx/text/text_run.rs +++ b/components/gfx/text/text_run.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use app_units::Au; use crate::font::{Font, FontHandleMethods, FontMetrics, ShapingFlags}; diff --git a/components/gfx/text/util.rs b/components/gfx/text/util.rs index b1bf25724ba..a5d8cfef3a5 100644 --- a/components/gfx/text/util.rs +++ b/components/gfx/text/util.rs @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use ucd::{Codepoint, UnicodeBlock}; |