diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-11 16:15:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-11 16:40:30 +0100 |
commit | bce99945d8bf764bfd40183a709142e0ea6b36ac (patch) | |
tree | f7e4f1d44923715652a69c975dc4002e5562e3f5 /toolkit | |
parent | 9e328623c450eac763b88317bda059addbcacb48 (diff) |
coverity#736076 Missing break in switch, its got to be wrong
Change-Id: I21a3b2b794a431d07df8a1bc250e8f0aacaf3059
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index 00f7cc5042e5..71d4f03f291b 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -2576,6 +2576,7 @@ throw(::com::sun::star::uno::RuntimeException, std::exception) // but no pages created if ( nId && nId <= getWindows().getLength() ) activateTab( nId ); + break; } case BASEPROPERTY_GRAPHIC: { |