diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-05 14:06:08 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-05 14:09:47 +0300 |
commit | 76d6f75b06a0cf491bbcd6b791bb28493d576a81 (patch) | |
tree | 91634db6eb2f7a2f63d89dc7f162bcc90326090c /toolkit | |
parent | 2bc6f3424be27d5e036523b07ddff7a388042a2f (diff) |
WaE: switch statement contains 'default' but no 'case' labels
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index f95ceb65f3ac..441810d89b9e 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -6665,14 +6665,7 @@ throw(::com::sun::star::uno::RuntimeException) (void)bVoid; #endif - sal_uInt16 nPropType = GetPropertyId( PropertyName ); - switch ( nPropType ) - { - default: - { - VCLXContainer::setProperty( PropertyName, Value ); - } - } + VCLXContainer::setProperty( PropertyName, Value ); } void VCLXFrame::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent ) |