summaryrefslogtreecommitdiff
path: root/vcl/qt5/Qt5Object.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/qt5/Qt5Object.cxx')
-rw-r--r--vcl/qt5/Qt5Object.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcl/qt5/Qt5Object.cxx b/vcl/qt5/Qt5Object.cxx
index 5bbfef5a5870..29bcb980f7c7 100644
--- a/vcl/qt5/Qt5Object.cxx
+++ b/vcl/qt5/Qt5Object.cxx
@@ -84,7 +84,8 @@ void Qt5Object::ResetClipRegion()
void Qt5Object::BeginSetClipRegion(sal_uInt32) { m_pRegion = QRegion(); }
-void Qt5Object::UnionClipRegion(long nX, long nY, long nWidth, long nHeight)
+void Qt5Object::UnionClipRegion(tools::Long nX, tools::Long nY, tools::Long nWidth,
+ tools::Long nHeight)
{
m_pRegion += QRect(nX, nY, nWidth, nHeight);
}
@@ -95,7 +96,7 @@ void Qt5Object::EndSetClipRegion()
m_pRegion = m_pRegion.intersected(m_pQWidget->geometry());
}
-void Qt5Object::SetPosSize(long nX, long nY, long nWidth, long nHeight)
+void Qt5Object::SetPosSize(tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight)
{
if (m_pQWidget)
{