mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 08:44:40 +01:00
Replace calls to .flags(ACTION)
with .action()
This commit is contained in:
parent
50309a05d0
commit
ba1e1ca665
3 changed files with 5 additions and 5 deletions
|
@ -123,10 +123,10 @@ mod imp {
|
||||||
&[Account::static_type().into()],
|
&[Account::static_type().into()],
|
||||||
<()>::static_type().into(),
|
<()>::static_type().into(),
|
||||||
)
|
)
|
||||||
.flags(glib::SignalFlags::ACTION)
|
.action()
|
||||||
.build(),
|
.build(),
|
||||||
Signal::builder("provider-changed", &[], <()>::static_type().into())
|
Signal::builder("provider-changed", &[], <()>::static_type().into())
|
||||||
.flags(glib::SignalFlags::ACTION)
|
.action()
|
||||||
.build(),
|
.build(),
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
|
@ -55,7 +55,7 @@ mod imp {
|
||||||
&[Account::static_type().into()],
|
&[Account::static_type().into()],
|
||||||
<()>::static_type().into(),
|
<()>::static_type().into(),
|
||||||
)
|
)
|
||||||
.flags(glib::SignalFlags::ACTION)
|
.action()
|
||||||
.build()]
|
.build()]
|
||||||
});
|
});
|
||||||
SIGNALS.as_ref()
|
SIGNALS.as_ref()
|
||||||
|
|
|
@ -62,14 +62,14 @@ mod imp {
|
||||||
static SIGNALS: Lazy<Vec<Signal>> = Lazy::new(|| {
|
static SIGNALS: Lazy<Vec<Signal>> = Lazy::new(|| {
|
||||||
vec![
|
vec![
|
||||||
Signal::builder("changed", &[], <()>::static_type().into())
|
Signal::builder("changed", &[], <()>::static_type().into())
|
||||||
.flags(glib::SignalFlags::ACTION)
|
.action()
|
||||||
.build(),
|
.build(),
|
||||||
Signal::builder(
|
Signal::builder(
|
||||||
"shared",
|
"shared",
|
||||||
&[Account::static_type().into()],
|
&[Account::static_type().into()],
|
||||||
<()>::static_type().into(),
|
<()>::static_type().into(),
|
||||||
)
|
)
|
||||||
.flags(glib::SignalFlags::ACTION)
|
.action()
|
||||||
.build(),
|
.build(),
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue