fix: typo in SignalVector::operator[] member access (#5556)

This commit is contained in:
pastalian 2024-08-24 17:15:03 +09:00 committed by GitHub
parent f42bb73123
commit f36c73019d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -52,6 +52,7 @@
- Dev: Unsingletonize `Resources2`. (#5460) - Dev: Unsingletonize `Resources2`. (#5460)
- Dev: All Lua globals now show in the `c2` global in the LuaLS metadata. (#5385) - Dev: All Lua globals now show in the `c2` global in the LuaLS metadata. (#5385)
- Dev: Images are now loaded in worker threads. (#5431) - Dev: Images are now loaded in worker threads. (#5431)
- Dev: Fixed broken `SignalVector::operator[]` implementation. (#5556)
- Dev: Qt Creator now auto-configures Conan when loading the project and skips vcpkg. (#5305) - Dev: Qt Creator now auto-configures Conan when loading the project and skips vcpkg. (#5305)
- Dev: The MSVC CRT is now bundled with Chatterino as it depends on having a recent version installed. (#5447) - Dev: The MSVC CRT is now bundled with Chatterino as it depends on having a recent version installed. (#5447)
- Dev: Refactor/unsingletonize `UserDataController`. (#5459) - Dev: Refactor/unsingletonize `UserDataController`. (#5459)

View file

@ -155,7 +155,7 @@ public:
decltype(auto) operator[](size_t index) decltype(auto) operator[](size_t index)
{ {
assertInGuiThread(); assertInGuiThread();
return this->items[index]; return this->items_[index];
} }
auto empty() auto empty()