aboutsummaryrefslogtreecommitdiff
path: root/font
diff options
context:
space:
mode:
Diffstat (limited to 'font')
-rw-r--r--font/src/ft/list_fonts.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/font/src/ft/list_fonts.rs b/font/src/ft/list_fonts.rs
index 7fdf6250..18cc5007 100644
--- a/font/src/ft/list_fonts.rs
+++ b/font/src/ft/list_fonts.rs
@@ -210,19 +210,6 @@ pub mod fc {
}
}
- macro_rules! pattern_add_int {
- ($($name:ident => $object:expr),*) => {
- $(
- #[inline]
- pub fn $name(&mut self, value: &str) -> bool {
- unsafe {
- self.add_string($object, value)
- }
- }
- )*
- }
- }
-
impl Pattern {
pub fn new() -> Pattern {
Pattern(unsafe { FcPatternCreate() })
@@ -260,23 +247,6 @@ pub mod fc {
};
}
- macro_rules! pattern_add_integer {
- ($($method:ident() => $property:expr),+) => {
- $(
- pub fn $method(&self, int: isize) -> bool {
- unsafe {
- FcPatternAddInteger(
- self.as_ptr(),
- $property.as_ptr() as *mut c_char,
- int as c_int,
- &mut index
- ) == 1
- }
- }
- )+
- };
- }
-
macro_rules! pattern_get_integer {
($($method:ident() => $property:expr),+) => {
$(