rename variables and methods

This commit is contained in:
RickyRister 2025-07-07 00:14:18 -07:00
parent 3c5ace00be
commit 37adf1794d
29 changed files with 190 additions and 190 deletions

View file

@ -49,10 +49,10 @@ public:
*/
inline bool operator()(const PrintingInfo &a, const PrintingInfo &b) const
{
if (a.getPtr()->getEnabled()) {
return !b.getPtr()->getEnabled() || a.getPtr()->getSortKey() < b.getPtr()->getSortKey();
if (a.getSet()->getEnabled()) {
return !b.getSet()->getEnabled() || a.getSet()->getSortKey() < b.getSet()->getSortKey();
} else {
return !b.getPtr()->getEnabled() && a.getPtr()->getSortKey() < b.getPtr()->getSortKey();
return !b.getSet()->getEnabled() && a.getSet()->getSortKey() < b.getSet()->getSortKey();
}
}
};