diff options
author | Matteo Casalin <matteo.casalin@gmx.com> | 2012-10-28 23:23:53 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-20 19:32:43 +0000 |
commit | 53ad646f54f8aa33b86c696c04500fd08ea6f3b6 (patch) | |
tree | 3eef1a050a5cf7b8b531f56e125d7252f4aab8fe /vcl/aqua | |
parent | 5e5c11c664f67ff9fd1120905b09a32bea3b2f6c (diff) |
Enforce use of accessors on gen.hxx structures
Change-Id: Icd1b2937fdeaba6de1877258731f53ddf996002e
Reviewed-on: https://gerrit.libreoffice.org/936
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'vcl/aqua')
-rw-r--r-- | vcl/aqua/source/window/salframe.cxx | 8 | ||||
-rw-r--r-- | vcl/aqua/source/window/salmenu.cxx | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx index 3215941b9a46..614660d18566 100644 --- a/vcl/aqua/source/window/salframe.cxx +++ b/vcl/aqua/source/window/salframe.cxx @@ -1442,10 +1442,10 @@ void AquaSalFrame::GetWorkArea( Rectangle& rRect ) pScreen = [NSScreen mainScreen]; NSRect aRect = [pScreen visibleFrame]; CocoaToVCL( aRect ); - rRect.nLeft = static_cast<long>(aRect.origin.x); - rRect.nTop = static_cast<long>(aRect.origin.y); - rRect.nRight = static_cast<long>(aRect.origin.x + aRect.size.width - 1); - rRect.nBottom = static_cast<long>(aRect.origin.y + aRect.size.height - 1); + rRect.Left() = static_cast<long>(aRect.origin.x); + rRect.Top() = static_cast<long>(aRect.origin.y); + rRect.Right() = static_cast<long>(aRect.origin.x + aRect.size.width - 1); + rRect.Bottom() = static_cast<long>(aRect.origin.y + aRect.size.height - 1); } SalPointerState AquaSalFrame::GetPointerState() diff --git a/vcl/aqua/source/window/salmenu.cxx b/vcl/aqua/source/window/salmenu.cxx index 96889a956216..dda138c71f9c 100644 --- a/vcl/aqua/source/window/salmenu.cxx +++ b/vcl/aqua/source/window/salmenu.cxx @@ -370,7 +370,7 @@ bool AquaSalMenu::ShowNativePopupMenu(FloatingWindow * pWin, const Rectangle& rR removeUnusedItemsRunner( pCopyMenu ); // create frame rect - NSRect displayPopupFrame = NSMakeRect( rRect.nLeft+(offset-1), rRect.nTop+(offset+1), popupFrame.size.width, 0 ); + NSRect displayPopupFrame = NSMakeRect( rRect.Left()+(offset-1), rRect.Top()+(offset+1), popupFrame.size.width, 0 ); pParentAquaSalFrame->VCLToCocoa(displayPopupFrame, false); // do the same strange semantics as vcl popup windows to arrive at a frame geometry |