mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 01:15:38 -04:00
Fix issue with changed() never being emitted on remove in GS.
This commit is contained in:
parent
b348a45834
commit
30a840ceb0
1 changed files with 2 additions and 1 deletions
|
@ -68,8 +68,9 @@ GlobalStorage::keys() const
|
||||||
int
|
int
|
||||||
GlobalStorage::remove( const QString& key )
|
GlobalStorage::remove( const QString& key )
|
||||||
{
|
{
|
||||||
return m.remove( key );
|
int nItems = m.remove( key );
|
||||||
emit changed();
|
emit changed();
|
||||||
|
return nItems;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue