diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qt5/Qt5Frame.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx index e90ab1119a93..018698f3b781 100644 --- a/vcl/qt5/Qt5Frame.cxx +++ b/vcl/qt5/Qt5Frame.cxx @@ -807,7 +807,7 @@ void Qt5Frame::BeginSetClipRegion(sal_uLong) void Qt5Frame::UnionClipRegion(long nX, long nY, long nWidth, long nHeight) { - m_aRegion.united(QRegion(nX, nY, nWidth, nHeight)); + m_aRegion = m_aRegion.united(QRegion(nX, nY, nWidth, nHeight)); } void Qt5Frame::EndSetClipRegion() { m_bNullRegion = false; } |