1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

LibGUI: Remove remaining G prefixes

This commit is contained in:
Tibor Nagy 2020-03-19 22:29:01 +01:00 committed by Andreas Kling
parent 809490dcb6
commit 30964ba7d0
4 changed files with 5 additions and 5 deletions

View file

@ -88,7 +88,7 @@ private:
inline const LogStream& operator<<(const LogStream& stream, const TextRange& value)
{
if (!value.is_valid())
return stream << "GTextRange(Invalid)";
return stream << "GUI::TextRange(Invalid)";
return stream << value.start() << '-' << value.end();
}