aboutsummaryrefslogtreecommitdiffstats
path: root/components/gfx/platform/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/gfx/platform/mod.rs')
-rw-r--r--components/gfx/platform/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/gfx/platform/mod.rs b/components/gfx/platform/mod.rs
index 106b232e308..a14abaafe47 100644
--- a/components/gfx/platform/mod.rs
+++ b/components/gfx/platform/mod.rs
@@ -3,16 +3,16 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#[cfg(any(target_os = "linux", target_os = "android"))]
-pub use platform::freetype::{font, font_context};
+pub use crate::platform::freetype::{font, font_context};
#[cfg(any(target_os = "linux", target_os = "android"))]
-pub use platform::freetype::{font_list, font_template};
+pub use crate::platform::freetype::{font_list, font_template};
#[cfg(target_os = "windows")]
-pub use platform::windows::{font, font_context, font_list, font_template};
+pub use crate::platform::windows::{font, font_context, font_list, font_template};
#[cfg(target_os = "macos")]
-pub use platform::macos::{font, font_context, font_list, font_template};
+pub use crate::platform::macos::{font, font_context, font_list, font_template};
#[cfg(any(target_os = "linux", target_os = "android"))]
mod freetype {