Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9 from GuillaumeGomez/regen
Browse files Browse the repository at this point in the history
Regen
  • Loading branch information
GuillaumeGomez committed Nov 17, 2018
2 parents 91b1550 + 78f7389 commit 14c8c08
Show file tree
Hide file tree
Showing 31 changed files with 540 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gir
7 changes: 7 additions & 0 deletions src/auto/action.rs
Expand Up @@ -7,6 +7,7 @@ use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::fmt;
use std::mem;
use std::ptr;

Expand Down Expand Up @@ -77,3 +78,9 @@ impl<O: IsA<Action>> AtkActionExt for O {
}
}
}

impl fmt::Display for Action {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Action")
}
}
7 changes: 7 additions & 0 deletions src/auto/component.rs
Expand Up @@ -16,6 +16,7 @@ use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem;
use std::mem::transmute;
use std::ptr;
Expand Down Expand Up @@ -170,3 +171,9 @@ where P: IsA<Component> {
let f: &&(Fn(&P, &Rectangle) + 'static) = transmute(f);
f(&Component::from_glib_borrow(this).downcast_unchecked(), &from_glib_borrow(arg1))
}

impl fmt::Display for Component {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Component")
}
}
7 changes: 7 additions & 0 deletions src/auto/document.rs
Expand Up @@ -14,6 +14,7 @@ use gobject_ffi;
#[cfg(any(feature = "v2_12", feature = "dox"))]
use libc;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem;
use std::mem::transmute;
use std::ptr;
Expand Down Expand Up @@ -161,3 +162,9 @@ where P: IsA<Document> {
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&Document::from_glib_borrow(this).downcast_unchecked())
}

impl fmt::Display for Document {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Document")
}
}
7 changes: 7 additions & 0 deletions src/auto/editable_text.rs
Expand Up @@ -7,6 +7,7 @@ use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::fmt;
use std::mem;
use std::ptr;

Expand Down Expand Up @@ -67,3 +68,9 @@ impl<O: IsA<EditableText>> EditableTextExt for O {
}
}
}

impl fmt::Display for EditableText {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "EditableText")
}
}

0 comments on commit 14c8c08

Please sign in to comment.