diff options
Diffstat (limited to 'sc/source/ui/view/gridmerg.cxx')
-rw-r--r-- | sc/source/ui/view/gridmerg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/gridmerg.cxx b/sc/source/ui/view/gridmerg.cxx index abb6493a3d84..aead9ccbb345 100644 --- a/sc/source/ui/view/gridmerg.cxx +++ b/sc/source/ui/view/gridmerg.cxx @@ -200,7 +200,7 @@ void ScGridMerger::Flush() nVarStart = nVarEnd; nVarEnd = nTemp; } - pDev->DrawGrid( Rectangle( nVarStart, nFixStart, nVarEnd, nFixEnd ), + pDev->DrawGrid( tools::Rectangle( nVarStart, nFixStart, nVarEnd, nFixEnd ), Size( nVarDiff, nFixEnd - nFixStart ), DrawGridFlags::VertLines ); } @@ -212,7 +212,7 @@ void ScGridMerger::Flush() else { long nVarEnd = nVarStart + ( nCount - 1 ) * nVarDiff; - pDev->DrawGrid( Rectangle( nFixStart, nVarStart, nFixEnd, nVarEnd ), + pDev->DrawGrid( tools::Rectangle( nFixStart, nVarStart, nFixEnd, nVarEnd ), Size( nFixEnd - nFixStart, nVarDiff ), DrawGridFlags::HorzLines ); } |