diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-10 19:59:38 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-10 20:22:50 +0300 |
commit | 6835d9f3074c1030be6632bdaff6c8398c696429 (patch) | |
tree | 90bdc179c3522a71f87fef348d9aaced458b611d /vcl | |
parent | a8877197072523ec60fadb138f9790aa2bf66cd2 (diff) |
It's "its", not "it's"
Change-Id: Ieaa787afd7cc622b4750a2ee8f17f6dad934ba63
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/tabctrl.cxx | 2 | ||||
-rw-r--r-- | vcl/win/source/gdi/salbmp.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx index 1d736a7f3a7a..abf714c76f62 100644 --- a/vcl/source/control/tabctrl.cxx +++ b/vcl/source/control/tabctrl.cxx @@ -1031,7 +1031,7 @@ IMPL_LINK( TabControl, ImplWindowEventListener, VclSimpleEvent*, pEvent ) if ( pEvent && pEvent->ISA( VclWindowEvent ) && (pEvent->GetId() == VCLEVENT_WINDOW_KEYINPUT) ) { VclWindowEvent* pWindowEvent = static_cast< VclWindowEvent* >(pEvent); - // Do not handle events from TabControl or it's children, which is done in Notify(), where the events can be consumed. + // Do not handle events from TabControl or its children, which is done in Notify(), where the events can be consumed. if ( !IsWindowOrChild( pWindowEvent->GetWindow() ) ) { KeyEvent* pKeyEvent = static_cast< KeyEvent* >(pWindowEvent->GetData()); diff --git a/vcl/win/source/gdi/salbmp.cxx b/vcl/win/source/gdi/salbmp.cxx index e1d53aadb592..30606d8e07be 100644 --- a/vcl/win/source/gdi/salbmp.cxx +++ b/vcl/win/source/gdi/salbmp.cxx @@ -341,7 +341,7 @@ Gdiplus::Bitmap* WinSalBitmap::ImplCreateGdiPlusBitmap() if(pExtraRGB) { // #i123478# shockingly, BitmapBuffer does not free the memory it is controlling - // in it's destructor, this *has to be done handish*. Doing it here now + // in its destructor, this *has to be done handish*. Doing it here now delete[] pExtraRGB->mpBits; delete pExtraRGB; } @@ -480,7 +480,7 @@ Gdiplus::Bitmap* WinSalBitmap::ImplCreateGdiPlusBitmap(const WinSalBitmap& rAlph if(pExtraA) { // #i123478# shockingly, BitmapBuffer does not free the memory it is controlling - // in it's destructor, this *has to be done handish*. Doing it here now + // in its destructor, this *has to be done handish*. Doing it here now delete[] pExtraA->mpBits; delete pExtraA; } @@ -497,7 +497,7 @@ Gdiplus::Bitmap* WinSalBitmap::ImplCreateGdiPlusBitmap(const WinSalBitmap& rAlph if(pExtraRGB) { // #i123478# shockingly, BitmapBuffer does not free the memory it is controlling - // in it's destructor, this *has to be done handish*. Doing it here now + // in its destructor, this *has to be done handish*. Doing it here now delete[] pExtraRGB->mpBits; delete pExtraRGB; } |