summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2009-04-23 12:23:13 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2009-04-23 12:23:13 +0000
commit726701315f0f5a0a411975c745ef0764f73eef3e (patch)
tree6f3cb368b75e8c7432f2f534d123b38dfa04af9b /xmlhelp
parentb9392a36645d8632b97ad79240f483b3a1683b61 (diff)
CWS-TOOLING: integrate CWS cmcfixes57
2009-04-16 14:44:54 +0200 cmc r270885 : #i101062# add in uui fix and stray ^M fixes 2009-04-16 10:57:50 +0200 cmc r270872 : #i101127# remove && || warnings 2009-04-15 17:04:23 +0200 cmc r270857 : #i101112# remove trivial new gcc warnings 2009-04-15 17:01:01 +0200 cmc r270856 : #i101111# remove trivial new warnings 2009-04-15 16:56:53 +0200 cmc r270854 : #i101110# make methods consts 2009-04-15 16:52:37 +0200 cmc r270853 : #i100225# fix visibility of component_getImplementationEnvironment and friends 2009-04-15 16:49:16 +0200 cmc r270852 : #i101109# ? : promotion rules
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/util/Decompressor.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlhelp/source/cxxhelp/util/Decompressor.cxx b/xmlhelp/source/cxxhelp/util/Decompressor.cxx
index 8a6352c6db08..ee21df9cd101 100644
--- a/xmlhelp/source/cxxhelp/util/Decompressor.cxx
+++ b/xmlhelp/source/cxxhelp/util/Decompressor.cxx
@@ -41,12 +41,12 @@ const sal_Int32 Decompressor::NBits = 32;
inline sal_Int32 getInteger_( const sal_Int8* v )
{
- return (((((( v[0]&0xFF ) << 8 )
- | v[1]&0xFF ) << 8 )
- | v[2]&0xFF ) << 8 )
- | v[3]&0xFF;
+ return (((((( (v[0]&0xFF) ) << 8 )
+ | (v[1]&0xFF) ) << 8 )
+ | (v[2]&0xFF) ) << 8 )
+ | (v[3]&0xFF);
}
-
+
sal_Int32 StreamDecompressor::getNextByte()
{
sal_Int8 a[4];