lxqt / lxqt-panel

The LXQt desktop panel
https://lxqt-project.org
GNU Lesser General Public License v2.1
179 stars 135 forks source link

plugin-desktopswitch: Don't use DesktopSwitchButton::LabelType invali… #2066

Closed luis-pereira closed 1 month ago

luis-pereira commented 1 month ago

…d value

Stops undefined behavior. Reference: enum foo { a = 0, b = UINT_MAX }; // range: [0, UINT_MAX] foo x = foo(-1); // undefined behavior since CWG 1766, // even if foo's underlying type is unsigned int