summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-06-24 12:13:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-06-24 14:28:27 +0100
commit22357c172f457aba46b48d982a1b23ab91184087 (patch)
tree2ced1b711947e4dd2ab1125a4fa3f221b003fe66 /toolkit
parent804c4983f2efc33adb9786d808c36aa6bdbfde35 (diff)
coverity#705322 Missing break in switch, assuming incorrect
especially because the setProperty logic now matches the getPropery one Change-Id: I7ebeabc9defed00d1853c3b91fbbf592e1940aa8
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxwindow.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index 374341521fce..96a663f24fd8 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -2077,6 +2077,7 @@ void VCLXWindow::setProperty( const OUString& PropertyName, const ::com::sun::st
break;
}
}
+ break;
case BASEPROPERTY_MULTILINE:
{
if ( ( eWinType == WINDOW_FIXEDTEXT )