1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use super::preferences_row::PreferencesRowImpl;
use crate::{ExpanderRow, PreferencesRow};
use glib::subclass::prelude::*;

pub trait ExpanderRowImpl: PreferencesRowImpl {}

unsafe impl<T: ExpanderRowImpl> IsSubclassable<T> for ExpanderRow {
    fn override_vfuncs(class: &mut glib::Class<Self>) {
        <PreferencesRow as IsSubclassable<T>>::override_vfuncs(class);
    }
}