summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-10-04 14:50:43 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-10-04 15:08:14 -0500
commit9ae4b6b996d6d1c4924be3a2c507f8c29fcbbb23 (patch)
tree790f0549820380f9b6a9a6fb374c072d4f5e6b6d
parent873f0e07087f80dac2f4a09633ccc3be72640dfd (diff)
coverity#1242366: Unchecked return value
Change-Id: I3f3b5b5a7ce5e387dc2acddc086d9f8a2fa2b12b
-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 d230bb59fe02..27beb7127cce 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -1124,7 +1124,7 @@ void Window::ImplInit( vcl::Window* pParent, WinBits nStyle, SystemParentData* p
SetBackground( Wallpaper( rStyleSettings.GetWindowColor() ) );
}
- ImplUpdatePos();
+ (void)ImplUpdatePos();
// calculate app font res (except for the Intro Window or the default window)
if ( mpWindowImpl->mbFrame && !pSVData->maGDIData.mnAppFontX && ! (nStyle & (WB_INTROWIN|WB_DEFAULTWIN)) )