summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-05-23 22:55:12 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-05-23 22:55:12 +1000
commitf2ce0d9a71efc607d30a324a8a4a303b5ad7bfd4 (patch)
tree11e6be227085d5989ccc6ba9dd227b28260b1136
parent58021e8866e6a539bb915742067b3674e0c93b92 (diff)
vcl: change to true and false in Window::ImplGetCanvas()
Change-Id: I0cf18a87f85c62d3f8b92af8f1ccda3d2b2f93f1
-rw-r--r--vcl/source/window/window.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index bf4112ca43f4..630b8ad57c41 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -4381,7 +4381,7 @@ uno::Reference< rendering::XCanvas > Window::ImplGetCanvas( const Size& rFullscr
else
aArg[ 2 ] = makeAny( ::com::sun::star::awt::Rectangle( mnOutOffX, mnOutOffY, mnOutWidth, mnOutHeight ) );
- aArg[ 3 ] = makeAny( mpWindowImpl->mbAlwaysOnTop ? sal_True : sal_False );
+ aArg[ 3 ] = makeAny( mpWindowImpl->mbAlwaysOnTop ? true : false );
aArg[ 4 ] = makeAny( uno::Reference< awt::XWindow >(
const_cast<Window*>(this)->GetComponentInterface(),
uno::UNO_QUERY ));