diff options
author | Jesse <jspears@umd.edu> | 2011-12-14 14:43:58 -0500 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-15 16:38:50 +0000 |
commit | 6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch) | |
tree | d59cda7401565170e32c7d06af9755f3110651fd /extensions | |
parent | 63a817d2fb00f248053566c8b8364667432fa8b3 (diff) |
Removed extra semicolons
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/bibliography/general.cxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/oleobjw.cxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/editpropertyhandler.cxx | 2 | ||||
-rw-r--r-- | extensions/test/ole/cpptest/cpptest.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx index 16e2a13d2c24..9c8077820f9e 100644 --- a/extensions/source/bibliography/general.cxx +++ b/extensions/source/bibliography/general.cxx @@ -720,7 +720,7 @@ IMPL_LINK(BibGeneralPage, ScrollHdl, ScrollBar*, pScroll) nCurrentOffset = aFixedTexts[0]->GetPosPixel().Y() - aBasePos.Y(); else nCurrentOffset = aFixedTexts[0]->GetPosPixel().X() - aBasePos.X(); - nOffset = pScroll->IsVisible() ? pScroll->GetThumbPos() + nCurrentOffset : nCurrentOffset;; + nOffset = pScroll->IsVisible() ? pScroll->GetThumbPos() + nCurrentOffset : nCurrentOffset; for(sal_uInt16 i = 0; i < FIELD_COUNT; i++) { diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 77e45daf6891..8fb92610a7da 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -702,7 +702,7 @@ sal_Bool SAL_CALL IUnknownWrapper_Impl::hasMethod( const OUString& aName ) catch (...) { throw RuntimeException(OUSTR("[automation bridge] unexpected exception in " - "IUnknownWrapper_Impl::hasMethod !"), Reference<XInterface>());; + "IUnknownWrapper_Impl::hasMethod !"), Reference<XInterface>()); } return ret; } diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 4827d690d0e3..c94b0bc72998 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -1968,7 +1968,7 @@ bool UnoConversionUtilities<T>::convertValueObject( const VARIANTARG *var, Any& } } else - bFail = true;; + bFail = true; } } } diff --git a/extensions/source/propctrlr/editpropertyhandler.cxx b/extensions/source/propctrlr/editpropertyhandler.cxx index e4929a72dc1d..79c319c65ecd 100644 --- a/extensions/source/propctrlr/editpropertyhandler.cxx +++ b/extensions/source/propctrlr/editpropertyhandler.cxx @@ -267,7 +267,7 @@ namespace pcr if ( implHaveTextTypeProperty() ) aInterestingActuatingProps.push_back( static_cast<const rtl::OUString&>(PROPERTY_TEXTTYPE) ); aInterestingActuatingProps.push_back( static_cast<const rtl::OUString&>(PROPERTY_MULTILINE) ); - return Sequence< ::rtl::OUString >( &(*aInterestingActuatingProps.begin()), aInterestingActuatingProps.size() );; + return Sequence< ::rtl::OUString >( &(*aInterestingActuatingProps.begin()), aInterestingActuatingProps.size() ); } //-------------------------------------------------------------------- diff --git a/extensions/test/ole/cpptest/cpptest.cxx b/extensions/test/ole/cpptest/cpptest.cxx index 29e0f7cf2aef..981c3f08e50d 100644 --- a/extensions/test/ole/cpptest/cpptest.cxx +++ b/extensions/test/ole/cpptest/cpptest.cxx @@ -98,7 +98,7 @@ HRESULT doTest() args[3]= _variant_t(L"private:factory/swriter"); args[2]= _variant_t(L"Test"); args[1]= _variant_t((long) 40); - args[0].vt= VT_ARRAY | VT_DISPATCH;; + args[0].vt= VT_ARRAY | VT_DISPATCH; args[0].parray= ar; if (FAILED(hr= dispDesk.InvokeN(L"loadComponentFromURL", args, 4, &varRet))) { |