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

LibGUI: Remove use of copy_ref().

This commit is contained in:
Andreas Kling 2019-07-11 15:49:47 +02:00
parent b0372883ff
commit 992272761c
3 changed files with 4 additions and 3 deletions

View file

@ -11,7 +11,7 @@ GIcon::GIcon(const GIconImpl& impl)
}
GIcon::GIcon(const GIcon& other)
: m_impl(other.m_impl.copy_ref())
: m_impl(other.m_impl)
{
}