diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-08-30 09:26:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-28 08:48:42 +0100 |
commit | 6ab899e7cc8dee550fbbeeb009bd1524eb9df2d1 (patch) | |
tree | 63e6ec390e96fe25d28e79de2449de4876671dec /canvas | |
parent | 0943d268d8c4ededd72b91ce22d9aef9835a2306 (diff) |
some windows SetPosSizePixel->setPosSizePixel
Change-Id: I676284380e2aab7327f4ceb5e043aafb29aa555d
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/directx/dx_9rm.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/directx/dx_9rm.cxx b/canvas/source/directx/dx_9rm.cxx index 4a48c03b9099..8d3ffd8b2755 100644 --- a/canvas/source/directx/dx_9rm.cxx +++ b/canvas/source/directx/dx_9rm.cxx @@ -713,7 +713,7 @@ namespace dxcanvas maSize.setY(static_cast<sal_Int32>(rSizePixel.Height())); // let the child window cover the same size as the parent window. - mpWindow->SetPosSizePixel(0,0,maSize.getX(),maSize.getY()); + mpWindow->setPosSizePixel(0,0,maSize.getX(),maSize.getY()); // TODO(F2): since we would like to share precious hardware // resources, the direct3d9 object should be global. each new @@ -1020,7 +1020,7 @@ namespace dxcanvas maSize.setX(static_cast<sal_Int32>(rect.getWidth())); maSize.setY(static_cast<sal_Int32>(rect.getHeight())); - mpWindow->SetPosSizePixel(0,0,maSize.getX(),maSize.getY()); + mpWindow->setPosSizePixel(0,0,maSize.getX(),maSize.getY()); // resize back buffer, if necessary // ------------------------------------------------------------- |