diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2016-01-09 22:55:28 +0100 |
---|---|---|
committer | Ashod Nakashian <ashnakash@gmail.com> | 2016-01-10 14:17:20 +0000 |
commit | 64d624b65124ac02d8ee59b135593fd9d8eb9067 (patch) | |
tree | 772fc0f308549b9416fbcb06bce2bf0e0f5809cc /vcl/source/window | |
parent | d61c16966b017abdbebf5ec0c2131de5a91c67f8 (diff) |
Fix typos
Change-Id: I9a5940027423ff0791fa7da0b79b617412ce6b86
Reviewed-on: https://gerrit.libreoffice.org/21209
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/dockmgr.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/splitwin.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/status.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/syschild.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/winproc.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/window/dockmgr.cxx b/vcl/source/window/dockmgr.cxx index 305878e74a53..653b663b328d 100644 --- a/vcl/source/window/dockmgr.cxx +++ b/vcl/source/window/dockmgr.cxx @@ -532,7 +532,7 @@ css::uno::Reference< css::accessibility::XAccessible > ImplPopupFloatWin::Create // this is to avoid appearance of this window as standalone window in the accessibility hierarchy // as this window is only used as a helper for subtoolbars that are not teared-off, the parent toolbar // has to provide accessibility support (as implemented in the toolkit) - // so the contained toolbar should appear as child of the correponsing toolbar item of the parent toolbar + // so the contained toolbar should appear as child of the corresponding toolbar item of the parent toolbar return css::uno::Reference< css::accessibility::XAccessible >(); } diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx index e6d62d305580..36639b1a9364 100644 --- a/vcl/source/window/splitwin.cxx +++ b/vcl/source/window/splitwin.cxx @@ -603,7 +603,7 @@ static void ImplCalcSet( ImplSplitSet* pSet, nMins = 0; while ( nSizeDelta && (nItems != nMins) ) { - // determinne which items we can calculate + // determine which items we can calculate nCalcItems = 0; while ( !nCalcItems ) { diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index c9649aaa8e77..ffd3541da964 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -1373,7 +1373,7 @@ void StatusBar::StartProgressMode( const OUString& rText ) void StatusBar::SetProgressValue( sal_uInt16 nNewPercent ) { - DBG_ASSERT( mbProgressMode, "StatusBar::SetProgressValue(): no progrss mode" ); + DBG_ASSERT( mbProgressMode, "StatusBar::SetProgressValue(): no progress mode" ); SAL_WARN_IF( nNewPercent > 100, "vcl", "StatusBar::SetProgressValue(): nPercent > 100" ); if ( mbProgressMode diff --git a/vcl/source/window/syschild.cxx b/vcl/source/window/syschild.cxx index c9b84bf9232a..d0c8e8ca375d 100644 --- a/vcl/source/window/syschild.cxx +++ b/vcl/source/window/syschild.cxx @@ -229,7 +229,7 @@ sal_IntPtr SystemChildWindow::GetParentWindowHandle( bool bUseJava ) try { ::rtl::Reference< ::jvmaccess::VirtualMachine > xVM; - uno::Reference< java::XJavaVM > xJavaVM = java::JavaVirtualMachine::create(xContext);; + uno::Reference< java::XJavaVM > xJavaVM = java::JavaVirtualMachine::create(xContext); uno::Sequence< sal_Int8 > aProcessID( 17 ); rtl_getGlobalProcessId( reinterpret_cast<sal_uInt8*>(aProcessID.getArray()) ); diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index 5227c2a97788..e61ea101dfcb 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -1600,7 +1600,7 @@ static void ImplHandlePaint( vcl::Window* pWindow, const Rectangle& rBoundRect, // #i87663# trigger possible pending resize notifications // (GetSizePixel does that for us) pWindow->GetSizePixel(); - // force drawing inmmediately + // force drawing immediately pWindow->Update(); } } |