summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-07 20:56:18 +0100
committerJulien Nabet <serval2412@yahoo.fr>2021-02-08 21:18:21 +0100
commit60b4c9f1921ec4f7086d71ba8b41749d432a0961 (patch)
tree253e1716aa42480fe9ebb0bd7a580859ce5dc831 /shell
parent0b1b167c3f7fa802532373699589104fe4b391c7 (diff)
Remove unneeded breaks
Extending this: https://gerrit.libreoffice.org/c/core/+/110512 Change-Id: I90d15fa6992a566e89c76dfab5fc863b33e0078a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110523 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'shell')
-rw-r--r--shell/source/win32/shlxthandler/ooofilt/propspec.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/source/win32/shlxthandler/ooofilt/propspec.cxx b/shell/source/win32/shlxthandler/ooofilt/propspec.cxx
index dd83326f5e2c..f03cef033b2b 100644
--- a/shell/source/win32/shlxthandler/ooofilt/propspec.cxx
+++ b/shell/source/win32/shlxthandler/ooofilt/propspec.cxx
@@ -175,13 +175,10 @@ bool CFullPropSpec::operator==( CFullPropSpec const & prop ) const
{
case PRSPEC_LPWSTR:
return( _wcsicmp( GetPropertyName(), prop.GetPropertyName() ) == 0 );
- break;
case PRSPEC_PROPID:
return( GetPropertyPropid() == prop.GetPropertyPropid() );
- break;
default:
return false;
- break;
}
}
bool CFullPropSpec::operator!=( CFullPropSpec const & prop ) const