mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 19:45:41 -04:00
[kde] Ext2AttrView: Revert the updateDisplay() change. [back to updateFlagsDisplay()]
This function is *only* used for flags. Not the compression algorithm.
This commit is contained in:
parent
c9588a89f7
commit
dd75ff80ca
@ -71,11 +71,10 @@ public:
|
||||
/**
|
||||
* Update the entire display.
|
||||
*/
|
||||
inline void updateDisplay(void)
|
||||
inline void updateFlagsDisplay(void)
|
||||
{
|
||||
updateFlagsString();
|
||||
updateFlagsCheckboxes();
|
||||
updateZAlgorithmLabel();
|
||||
}
|
||||
};
|
||||
|
||||
@ -296,7 +295,7 @@ void Ext2AttrView::setFlags(int flags)
|
||||
Q_D(Ext2AttrView);
|
||||
if (d->flags != flags) {
|
||||
d->flags = flags;
|
||||
d->updateDisplay();
|
||||
d->updateFlagsDisplay();
|
||||
}
|
||||
}
|
||||
|
||||
@ -308,7 +307,7 @@ void Ext2AttrView::clearFlags(void)
|
||||
Q_D(Ext2AttrView);
|
||||
if (d->flags != 0) {
|
||||
d->flags = 0;
|
||||
d->updateDisplay();
|
||||
d->updateFlagsDisplay();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user