summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-14 11:14:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-14 11:14:46 +0000
commit9a9a3e8954c9e0adda76539b158e7ca8af1bd9b0 (patch)
tree2ded2448eeb62df7cda83f3b0e6f5ce0b82f6fd5 /vcl
parent773ec34047ea5e94720debb42a2115958665b24c (diff)
coverity#735343 Unchecked return value
Change-Id: I18c605511094ad48557a24a89a391d8361a001a7
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/field2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx
index 2cb03cf61973..a2c740b948ce 100644
--- a/vcl/source/control/field2.cxx
+++ b/vcl/source/control/field2.cxx
@@ -1687,7 +1687,7 @@ void DateFormatter::Reformat()
if ( !aStr.isEmpty() )
{
ImplSetText( aStr );
- ImplDateGetValue( aStr, maLastDate, GetExtDateFormat(true), ImplGetLocaleDataWrapper(), GetCalendarWrapper(), GetFieldSettings() );
+ (void)ImplDateGetValue(aStr, maLastDate, GetExtDateFormat(true), ImplGetLocaleDataWrapper(), GetCalendarWrapper(), GetFieldSettings());
}
else
{