Andreas Kling
a6a8ba80fc
LibGfx: Rename Color::from_rgba() => Color::from_argb()
...
This matches the rename of RGBA32 to ARGB32. It also makes more sense
when you see it used with 32-bit hexadecimal literals:
Before:
Color::from_rgba(0xaarrggbb)
After:
Color::from_argb(0xaarrggbb)
2022-03-04 23:40:21 +01:00
Itamar
af132fdbd1
Userland: Rename WindowManagerServerConnection
...
Rename WindowManagerServerConnection=>ConnectionToWindowManagerServer.
This was done with CLion's automatic rename feature.
2022-02-25 22:35:12 +01:00
Lenny Maiorani
f2d8c488ec
Userland/Applets: Use default constructors/destructors
...
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules
"The compiler is more likely to get the default semantics right and
you cannot implement these functions better than the compiler."
2022-02-13 21:27:17 +00:00
Maciej
99e3e42fa5
Keymap Applet: Spawn KeyboardSettings when clicking
2022-02-04 21:30:31 +01:00
Timur Sultanov
b9c558f6c6
WindowServer+Keymap+LibGUI: Add widget to display current keymap
2022-02-03 00:47:22 +01:00