














































































































6






std::list variables in our code:
cpp
std::list m_lpEditJobs;
std::list m_Cache;
std::list Indices = ...;
std::list listOfChars;
std::list m_IDs;
std::list Indices = ...;
std::list Indices;
std::list m_lpWriterFinishJobs;
std::list Indices = ...;
std::list HitCharacters = ...;
std::list listOfChars;
Option A (prefix for list and its element type):
std::list m_lpEditJobs;
Option B (no prefix for list and its element type):
```
std::list m_E...
















Graphics()->LinesBegin();
for(...)
{
....
Graphics()->LinesDraw(...;
}
Graphics()->LinesEnd();
Graphics()->QuadsEnd();
basically this (edited)








































bb5e203 Remove individual RGBA sliders from editor color picker - Robyt3
0aa55e2 Add str_isallnum_hex - Robyt3
f30682b Add color4_base::PackAlphaLast and UnpackAlphaLast - Robyt3
2db5693 Add color_parse function to parse strings as colors - Robyt3
7b98236 Add shift+rightclick/leftclick to copy/paste color in editor - Robyt3
05ddfba Merge #6755 - bors[bot]