diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-27 08:11:10 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-27 14:00:28 +0200 |
commit | 92b447876d1d9c10fba17e5f527332fe6ec07fb9 (patch) | |
tree | 92714b5d8db4fbf2d7a56aca8be0450269397be4 | |
parent | e6ff6f9a71ec88747e3cf8165fb72a96b57f2e99 (diff) |
css already means ::com::sun::star
Change-Id: I48d7b746d7cc49246743c62480b0d225d2519342
23 files changed, 128 insertions, 128 deletions
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx b/accessibility/source/extended/textwindowaccessibility.cxx index 58ed5fcf7d31..7d8001318cf4 100644 --- a/accessibility/source/extended/textwindowaccessibility.cxx +++ b/accessibility/source/extended/textwindowaccessibility.cxx @@ -982,8 +982,8 @@ Document::retrieveCharacterBounds(Paragraph const * pParagraph, struct IndexCompare { - const ::css::beans::PropertyValue* pValues; - IndexCompare( const ::css::beans::PropertyValue* pVals ) : pValues(pVals) {} + const css::beans::PropertyValue* pValues; + IndexCompare( const css::beans::PropertyValue* pVals ) : pValues(pVals) {} bool operator() ( const sal_Int32& a, const sal_Int32& b ) const { return pValues[a].Name < pValues[b].Name; @@ -1000,13 +1000,13 @@ Document::retrieveCharacterAttributes( Font aFont = m_rEngine.GetFont(); const sal_Int32 AttributeCount = 9; sal_Int32 i = 0; - ::css::uno::Sequence< ::css::beans::PropertyValue > aAttribs( AttributeCount ); + css::uno::Sequence< css::beans::PropertyValue > aAttribs( AttributeCount ); //character background color aAttribs[i].Name = "CharBackColor"; aAttribs[i].Handle = -1; aAttribs[i].Value = mapFontColor( aFont.GetFillColor() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character color @@ -1014,65 +1014,65 @@ Document::retrieveCharacterAttributes( aAttribs[i].Handle = -1; //aAttribs[i].Value = mapFontColor( aFont.GetColor() ); aAttribs[i].Value = mapFontColor( m_rEngine.GetTextColor() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character font name aAttribs[i].Name = "CharFontName"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (::rtl::OUString)aFont.GetName() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (::rtl::OUString)aFont.GetName() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character height aAttribs[i].Name = "CharHeight"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetHeight() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)aFont.GetHeight() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character posture aAttribs[i].Name = "CharPosture"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetItalic() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)aFont.GetItalic() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character relief /* aAttribs[i].Name = "CharRelief"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetRelief() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)aFont.GetRelief() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; */ //character strikeout aAttribs[i].Name = "CharStrikeout"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetStrikeout() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)aFont.GetStrikeout() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character underline aAttribs[i].Name = "CharUnderline"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)aFont.GetUnderline() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)aFont.GetUnderline() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character weight aAttribs[i].Name = "CharWeight"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (float)aFont.GetWeight() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (float)aFont.GetWeight() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; //character alignment aAttribs[i].Name = "ParaAdjust"; aAttribs[i].Handle = -1; - aAttribs[i].Value = ::css::uno::makeAny( (sal_Int16)m_rEngine.GetTextAlign() ); - aAttribs[i].State = ::css::beans::PropertyState_DIRECT_VALUE; + aAttribs[i].Value = css::uno::makeAny( (sal_Int16)m_rEngine.GetTextAlign() ); + aAttribs[i].State = css::beans::PropertyState_DIRECT_VALUE; i++; ::osl::MutexGuard aInternalGuard(GetMutex()); @@ -1101,24 +1101,24 @@ Document::retrieveCharacterAttributes( aCharAttrSeq[ aRunIter->first ] = aRunIter->second; } - ::css::beans::PropertyValue* pValues = aAttribs.getArray(); + css::beans::PropertyValue* pValues = aAttribs.getArray(); for (i = 0; i < AttributeCount; i++,pValues++) { aCharAttrSeq[ pValues->Name ] = *pValues; } - ::css::uno::Sequence< ::css::beans::PropertyValue > aRes = convertHashMapToSequence( aCharAttrSeq ); + css::uno::Sequence< css::beans::PropertyValue > aRes = convertHashMapToSequence( aCharAttrSeq ); // sort the attributes sal_Int32 nLength = aRes.getLength(); - const ::css::beans::PropertyValue* pPairs = aRes.getConstArray(); + const css::beans::PropertyValue* pPairs = aRes.getConstArray(); sal_Int32* pIndices = new sal_Int32[nLength]; for( i = 0; i < nLength; i++ ) pIndices[i] = i; std::sort( &pIndices[0], &pIndices[nLength], IndexCompare(pPairs) ); // create sorted sequences according to index array - ::css::uno::Sequence< ::css::beans::PropertyValue > aNewValues( nLength ); - ::css::beans::PropertyValue* pNewValues = aNewValues.getArray(); + css::uno::Sequence< css::beans::PropertyValue > aNewValues( nLength ); + css::beans::PropertyValue* pNewValues = aNewValues.getArray(); for( i = 0; i < nLength; i++ ) { pNewValues[i] = pPairs[pIndices[i]]; @@ -1531,16 +1531,16 @@ void Document::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet { VCLXAccessibleComponent::FillAccessibleStateSet( rStateSet ); if (!m_rView.IsReadOnly()) - rStateSet.AddState( ::css::accessibility::AccessibleStateType::EDITABLE ); + rStateSet.AddState( css::accessibility::AccessibleStateType::EDITABLE ); } void Document::FillAccessibleRelationSet( utl::AccessibleRelationSetHelper& rRelationSet ) { - if( getAccessibleParent()->getAccessibleContext()->getAccessibleRole() == ::css::accessibility::AccessibleRole::SCROLL_PANE ) + if( getAccessibleParent()->getAccessibleContext()->getAccessibleRole() == css::accessibility::AccessibleRole::SCROLL_PANE ) { - ::css::uno::Sequence< ::css::uno::Reference< ::css::uno::XInterface > > aSequence(1); + css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > aSequence(1); aSequence[0] = getAccessibleParent(); - rRelationSet.AddRelation( ::css::accessibility::AccessibleRelation( ::css::accessibility::AccessibleRelationType::MEMBER_OF, aSequence ) ); + rRelationSet.AddRelation( css::accessibility::AccessibleRelation( css::accessibility::AccessibleRelationType::MEMBER_OF, aSequence ) ); } else { @@ -1700,11 +1700,11 @@ IMPL_LINK(Document, WindowEventHandler, ::VclSimpleEvent *, pEvent) if (xParagraph.is()) { xParagraph->notifyEvent( - ::css::accessibility::AccessibleEventId:: + css::accessibility::AccessibleEventId:: STATE_CHANGED, - ::css::uno::Any(), - ::css::uno::makeAny( - ::css::accessibility::AccessibleStateType:: + css::uno::Any(), + css::uno::makeAny( + css::accessibility::AccessibleStateType:: FOCUSED)); } } @@ -1736,12 +1736,12 @@ IMPL_LINK(Document, WindowEventHandler, ::VclSimpleEvent *, pEvent) ::rtl::Reference< Paragraph > xParagraph(getParagraph(m_aTemp)); if (xParagraph.is()) xParagraph->notifyEvent( - ::css::accessibility::AccessibleEventId:: + css::accessibility::AccessibleEventId:: STATE_CHANGED, - ::css::uno::makeAny( - ::css::accessibility::AccessibleStateType:: + css::uno::makeAny( + css::accessibility::AccessibleStateType:: FOCUSED), - ::css::uno::Any()); + css::uno::Any()); } /* @@ -2235,7 +2235,7 @@ void Document::sendEvent(::sal_Int32 start, ::sal_Int32 end, ::sal_Int16 nEventI if (xParagraph.is()) xParagraph->notifyEvent( nEventId, - ::css::uno::Any(), ::css::uno::Any()); + css::uno::Any(), css::uno::Any()); ++aIt; } } @@ -2325,8 +2325,8 @@ void Document::handleSelectionChangeNotification() //old has no selection but new has selection nMin = ::std::min(nNewFirstPara, nNewLastPara); nMax = ::std::max(nNewFirstPara, nNewLastPara); - sendEvent(nMin, nMax, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nMin, nMax, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nMin, nMax, css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nMin, nMax, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 3: @@ -2334,64 +2334,64 @@ void Document::handleSelectionChangeNotification() //old has selection but new has no selection. nMin = ::std::min(m_nSelectionFirstPara, m_nSelectionLastPara); nMax = ::std::max(m_nSelectionFirstPara, m_nSelectionLastPara); - sendEvent(nMin, nMax, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nMin, nMax, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nMin, nMax, css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nMin, nMax, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 4: { //Send text_selection_change event on Nep - sendEvent(nNewLastPara, nNewLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nNewLastPara, nNewLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 5: { // 4, 1 -> 4, 7 - sendEvent(m_nSelectionLastPara, m_nSelectionFirstPara-1, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nNewFirstPara+1, nNewLastPara, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara, m_nSelectionFirstPara-1, css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nNewFirstPara+1, nNewLastPara, css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(m_nSelectionLastPara, nNewLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara, nNewLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 6: { // 1, 2 -> 1, 4; 4,4->4,5; - sendEvent(m_nSelectionLastPara+1, nNewLastPara, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara+1, nNewLastPara, css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(m_nSelectionLastPara, nNewLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara, nNewLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 7: { // 4,1 -> 4,3, - sendEvent(m_nSelectionLastPara +1, nNewLastPara , ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara +1, nNewLastPara , css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(m_nSelectionLastPara, nNewLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(m_nSelectionLastPara, nNewLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 8: { // 4,7 ->4,5; - sendEvent(nNewLastPara + 1, m_nSelectionLastPara, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nNewLastPara + 1, m_nSelectionLastPara, css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nNewLastPara, m_nSelectionLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nNewLastPara, m_nSelectionLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 9: { // 3,2 -> 3,1; 4,4->4,3 - sendEvent(nNewLastPara, m_nSelectionLastPara - 1, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nNewLastPara, m_nSelectionLastPara - 1, css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nNewLastPara, m_nSelectionLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nNewLastPara, m_nSelectionLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; case 10: { // 4,7 -> 4,1 - sendEvent(m_nSelectionFirstPara + 1, m_nSelectionLastPara, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nNewLastPara, nNewFirstPara - 1, ::css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(m_nSelectionFirstPara + 1, m_nSelectionLastPara, css::accessibility::AccessibleEventId::SELECTION_CHANGED); + sendEvent(nNewLastPara, nNewFirstPara - 1, css::accessibility::AccessibleEventId::SELECTION_CHANGED); - sendEvent(nNewLastPara, m_nSelectionLastPara, ::css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); + sendEvent(nNewLastPara, m_nSelectionLastPara, css::accessibility::AccessibleEventId::TEXT_SELECTION_CHANGED); } break; default: diff --git a/basctl/source/basicide/baside2.hxx b/basctl/source/basicide/baside2.hxx index 41f1af8e757e..aae2ae6f53ba 100644 --- a/basctl/source/basicide/baside2.hxx +++ b/basctl/source/basicide/baside2.hxx @@ -539,9 +539,9 @@ public: class UnoTypeCodeCompletetor { private: - ::css::uno::Reference< ::css::lang::XMultiServiceFactory > xFactory; - ::css::uno::Reference< ::css::reflection::XIdlReflection > xRefl; - ::css::uno::Reference< ::css::reflection::XIdlClass > xClass; + css::uno::Reference< css::lang::XMultiServiceFactory > xFactory; + css::uno::Reference< css::reflection::XIdlReflection > xRefl; + css::uno::Reference< css::reflection::XIdlClass > xClass; bool bCanComplete; bool CheckField( const OUString& sFieldName ); diff --git a/chart2/source/model/main/FormattedString.hxx b/chart2/source/model/main/FormattedString.hxx index ade1c38f7299..20adb06b7028 100644 --- a/chart2/source/model/main/FormattedString.hxx +++ b/chart2/source/model/main/FormattedString.hxx @@ -36,11 +36,11 @@ namespace chart namespace impl { typedef ::cppu::WeakImplHelper5< - ::css::chart2::XFormattedString2, - ::css::lang::XServiceInfo, - ::css::util::XCloneable, - ::css::util::XModifyBroadcaster, - ::css::util::XModifyListener > + css::chart2::XFormattedString2, + css::lang::XServiceInfo, + css::util::XCloneable, + css::util::XModifyBroadcaster, + css::util::XModifyListener > FormattedString_Base; } @@ -50,8 +50,8 @@ class FormattedString : public ::property::OPropertySet { public: - FormattedString( ::css::uno::Reference< - ::css::uno::XComponentContext > const & xContext ); + FormattedString( css::uno::Reference< + css::uno::XComponentContext > const & xContext ); virtual ~FormattedString(); /// declare XServiceInfo methods @@ -82,43 +82,43 @@ protected: // ____ XFormattedString ____ virtual OUString SAL_CALL getString() - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL setString( const OUString& String ) - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ OPropertySet ____ - virtual ::css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const - throw(::css::beans::UnknownPropertyException) SAL_OVERRIDE; + virtual css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const + throw(css::beans::UnknownPropertyException) SAL_OVERRIDE; // ____ OPropertySet ____ virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE; // ____ XPropertySet ____ - virtual ::css::uno::Reference< ::css::beans::XPropertySetInfo > SAL_CALL + virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ XCloneable ____ - virtual ::css::uno::Reference< ::css::util::XCloneable > SAL_CALL createClone() - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ XModifyBroadcaster ____ virtual void SAL_CALL addModifyListener( - const ::css::uno::Reference< ::css::util::XModifyListener >& aListener ) - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + const css::uno::Reference< css::util::XModifyListener >& aListener ) + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL removeModifyListener( - const ::css::uno::Reference< ::css::util::XModifyListener >& aListener ) - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + const css::uno::Reference< css::util::XModifyListener >& aListener ) + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ XModifyListener ____ virtual void SAL_CALL modified( - const ::css::lang::EventObject& aEvent ) - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + const css::lang::EventObject& aEvent ) + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ XEventListener (base of XModifyListener) ____ virtual void SAL_CALL disposing( - const ::css::lang::EventObject& Source ) - throw (::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + const css::lang::EventObject& Source ) + throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // ____ OPropertySet ____ virtual void firePropertyChangeEvent() SAL_OVERRIDE; @@ -129,7 +129,7 @@ protected: private: OUString m_aString; - ::css::uno::Reference< ::css::util::XModifyListener > m_xModifyEventForwarder; + css::uno::Reference< css::util::XModifyListener > m_xModifyEventForwarder; }; } // namespace chart diff --git a/chart2/source/model/template/ChartTypeTemplate.cxx b/chart2/source/model/template/ChartTypeTemplate.cxx index e1296cfc9d3f..1940305d5998 100644 --- a/chart2/source/model/template/ChartTypeTemplate.cxx +++ b/chart2/source/model/template/ChartTypeTemplate.cxx @@ -179,7 +179,7 @@ uno::Reference< XDiagram > SAL_CALL ChartTypeTemplate::createDiagramByDataSource } sal_Bool SAL_CALL ChartTypeTemplate::supportsCategories() - throw (::css::uno::RuntimeException, ::std::exception) + throw (css::uno::RuntimeException, ::std::exception) { return sal_True; } diff --git a/chart2/source/model/template/ChartTypeTemplate.hxx b/chart2/source/model/template/ChartTypeTemplate.hxx index b373ac21e0ff..39f3e0c5e742 100644 --- a/chart2/source/model/template/ChartTypeTemplate.hxx +++ b/chart2/source/model/template/ChartTypeTemplate.hxx @@ -92,7 +92,7 @@ protected: throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; /// denotes if the chart needs categories at the first scale virtual sal_Bool SAL_CALL supportsCategories() - throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; virtual void SAL_CALL changeDiagram( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram ) diff --git a/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx b/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx index 223999748c6e..4440db517071 100644 --- a/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx +++ b/chart2/source/model/template/GL3DBarChartTypeTemplate.cxx @@ -148,7 +148,7 @@ sal_Bool SAL_CALL GL3DBarChartTypeTemplate::matchesTemplate( uno::Reference<chart2::XChartType> GL3DBarChartTypeTemplate::getChartTypeForNewSeries( const uno::Sequence<uno::Reference<chart2::XChartType> >& /*xOldChartTypes*/ ) - throw (::css::uno::RuntimeException, ::std::exception) + throw (css::uno::RuntimeException, ::std::exception) { uno::Reference<chart2::XChartType> xResult; @@ -180,7 +180,7 @@ GL3DBarChartTypeTemplate::getChartTypeForNewSeries( const uno::Sequence<uno::Ref } sal_Bool GL3DBarChartTypeTemplate::supportsCategories() - throw (::css::uno::RuntimeException, ::std::exception) + throw (css::uno::RuntimeException, ::std::exception) { return false; } diff --git a/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx b/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx index f2957536e8c4..ce81771e8efa 100644 --- a/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx +++ b/chart2/source/model/template/GL3DBarChartTypeTemplate.hxx @@ -45,10 +45,10 @@ public: virtual css::uno::Reference<css::chart2::XChartType> SAL_CALL getChartTypeForNewSeries( const css::uno::Sequence<css::uno::Reference<css::chart2::XChartType> >& xOldChartTypes ) - throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL supportsCategories() - throw (::css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, ::std::exception) SAL_OVERRIDE; // OPropertySet virtual css::uno::Any GetDefaultValue( sal_Int32 nHandle ) const diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index a091e6d2e947..4210bd0a196c 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -404,7 +404,7 @@ private: bool m_bSelfClose; /// in case of CloseVetoException on method close() wqs thrown by ourself - we must close ourself later if no internal processes are running bool m_bIsHidden; /// indicates, if this frame is used in hidden mode or not static css::uno::WeakReference< css::frame::XFrame2 > m_xCloserFrame; /// holds the only frame, which must show the special closer menu item (can be NULL!) - css::uno::Reference< ::css::frame::XLayoutManager2 > m_xLayoutManager; /// is used to layout the child windows of the frame. + css::uno::Reference< css::frame::XLayoutManager2 > m_xLayoutManager; /// is used to layout the child windows of the frame. css::uno::Reference< css::frame::XDispatchInformationProvider > m_xDispatchInfoHelper; css::uno::Reference< css::frame::XTitle > m_xTitleHelper; diff --git a/framework/source/services/pathsettings.cxx b/framework/source/services/pathsettings.cxx index 763938846cfa..9b9f935ec0cf 100644 --- a/framework/source/services/pathsettings.cxx +++ b/framework/source/services/pathsettings.cxx @@ -206,14 +206,14 @@ public: } // XInterface - virtual ::css::uno::Any SAL_CALL queryInterface( const ::css::uno::Type& type) throw ( ::css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; + virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& type) throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE; virtual void SAL_CALL acquire() throw () SAL_OVERRIDE { OWeakObject::acquire(); } virtual void SAL_CALL release() throw () SAL_OVERRIDE { OWeakObject::release(); } // XTypeProvider - virtual ::css::uno::Sequence< ::css::uno::Type > SAL_CALL getTypes( ) throw(::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::util::XChangesListener virtual void SAL_CALL changesOccurred(const css::util::ChangesEvent& aEvent) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -447,7 +447,7 @@ private: // warning: by ‘virtual void {anonymous}::PathSettings::getFastPropertyValue(com::sun::star::uno::Any&, sal_Int32) const’ [-Woverloaded-virtual] using cppu::OPropertySetHelper::getFastPropertyValue; virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() SAL_OVERRIDE; - virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() throw(::css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE; /** factory methods to guarantee right (but on demand) initialized members ... */ css::uno::Reference< css::util::XStringSubstitution > fa_getSubstitution(); diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx index 71085910efb7..4724b7ed3de7 100644 --- a/include/sax/fastattribs.hxx +++ b/include/sax/fastattribs.hxx @@ -61,11 +61,11 @@ class SAX_DLLPUBLIC FastTokenHandlerBase class SAX_DLLPUBLIC FastTokenLookup { static const int mnUtf8BufferSize = 128; - ::css::uno::Sequence< sal_Int8 > maUtf8Buffer; + css::uno::Sequence< sal_Int8 > maUtf8Buffer; public: FastTokenLookup(); sal_Int32 getTokenFromChars( - const ::css::uno::Reference< ::css::xml::sax::XFastTokenHandler > &mxTokenHandler, + const css::uno::Reference< css::xml::sax::XFastTokenHandler > &mxTokenHandler, FastTokenHandlerBase *pTokenHandler, const char *pStr, size_t nLength = 0 ); }; diff --git a/include/sfx2/sfxbasecontroller.hxx b/include/sfx2/sfxbasecontroller.hxx index a81568f20f27..0f77a44f0833 100644 --- a/include/sfx2/sfxbasecontroller.hxx +++ b/include/sfx2/sfxbasecontroller.hxx @@ -169,7 +169,7 @@ public: virtual void SAL_CALL removeTitleChangeListener( const css::uno::Reference< css::frame::XTitleChangeListener >& xListener ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // css::lang::XInitialization - virtual void SAL_CALL initialize( const ::css::uno::Sequence< ::css::uno::Any >& aArguments ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // FIXME: TL needs this in sw/source/ui/uno/unotxdoc.cxx now; // either the _Impl name should vanish or there should be an "official" API diff --git a/include/svtools/colorcfg.hxx b/include/svtools/colorcfg.hxx index 00f8293ad680..d373d6aad0d9 100644 --- a/include/svtools/colorcfg.hxx +++ b/include/svtools/colorcfg.hxx @@ -114,7 +114,7 @@ public: EditableColorConfig(); ~EditableColorConfig(); - ::css::uno::Sequence< OUString > GetSchemeNames() const; + css::uno::Sequence< OUString > GetSchemeNames() const; void DeleteScheme(const OUString& rScheme ); void AddScheme(const OUString& rScheme ); bool LoadScheme(const OUString& rScheme ); diff --git a/include/svx/fmgridif.hxx b/include/svx/fmgridif.hxx index 1f2b2c59df37..4d5fd549840b 100644 --- a/include/svx/fmgridif.hxx +++ b/include/svx/fmgridif.hxx @@ -341,8 +341,8 @@ class FmGridControl; class SVX_DLLPUBLIC FmXGridPeer :public VCLXWindow ,public FmXGridPeer_BASE { - ::css::uno::Reference< ::css::container::XIndexContainer > m_xColumns; - ::css::uno::Reference< ::css::sdbc::XRowSet > m_xCursor; + css::uno::Reference< css::container::XIndexContainer > m_xColumns; + css::uno::Reference< css::sdbc::XRowSet > m_xCursor; ::cppu::OInterfaceContainerHelper m_aModifyListeners, m_aUpdateListeners, m_aContainerListeners, @@ -352,13 +352,13 @@ class SVX_DLLPUBLIC FmXGridPeer :public VCLXWindow OUString m_aMode; sal_Int32 m_nCursorListening; - ::css::uno::Reference< ::css::frame::XDispatchProviderInterceptor > m_xFirstDispatchInterceptor; + css::uno::Reference< css::frame::XDispatchProviderInterceptor > m_xFirstDispatchInterceptor; bool m_bInterceptingDispatch; bool* m_pStateCache; // one bool for each supported url - ::css::uno::Reference< ::css::frame::XDispatch > * m_pDispatchers; + css::uno::Reference< css::frame::XDispatch > * m_pDispatchers; // one dispatcher for each supported url // (I would like to have a vector here but including the stl in an exported file seems // very risky to me ....) @@ -368,11 +368,11 @@ class SVX_DLLPUBLIC FmXGridPeer :public VCLXWindow GridListenerDelegator* m_pGridListener; protected: - ::css::uno::Reference< ::css::uno::XComponentContext > m_xContext; + css::uno::Reference< css::uno::XComponentContext > m_xContext; ::osl::Mutex m_aMutex; public: - FmXGridPeer(const ::css::uno::Reference< ::css::uno::XComponentContext >&); + FmXGridPeer(const css::uno::Reference< css::uno::XComponentContext >&); virtual ~FmXGridPeer(); // spaeter Constructor, immer nach dem realen Constructor zu rufen ! diff --git a/include/svx/fmsrccfg.hxx b/include/svx/fmsrccfg.hxx index ce869e1c5376..1e1150654685 100644 --- a/include/svx/fmsrccfg.hxx +++ b/include/svx/fmsrccfg.hxx @@ -54,7 +54,7 @@ namespace svxform public: // no bit fields at all (want to pass the addresses to the OConfigurationValueContainer) - ::css::uno::Sequence< OUString > + css::uno::Sequence< OUString > aHistory; OUString sSingleSearchField; diff --git a/sax/source/tools/fastattribs.cxx b/sax/source/tools/fastattribs.cxx index e3df6b1aaf04..9d03772c8cae 100644 --- a/sax/source/tools/fastattribs.cxx +++ b/sax/source/tools/fastattribs.cxx @@ -239,7 +239,7 @@ FastTokenLookup::FastTokenLookup() * pet sequence around and do some heavy petting on it. */ sal_Int32 FastTokenLookup::getTokenFromChars( - const ::css::uno::Reference< ::css::xml::sax::XFastTokenHandler > &xTokenHandler, + const css::uno::Reference< css::xml::sax::XFastTokenHandler > &xTokenHandler, FastTokenHandlerBase *pTokenHandler, const char *pToken, size_t nLen /* = 0 */ ) { diff --git a/sc/source/filter/inc/formulabuffer.hxx b/sc/source/filter/inc/formulabuffer.hxx index 7b45e8957662..44ff29936e66 100644 --- a/sc/source/filter/inc/formulabuffer.hxx +++ b/sc/source/filter/inc/formulabuffer.hxx @@ -127,11 +127,11 @@ public: void setCellFormulaValue( const css::table::CellAddress& rAddress, const OUString& rValueStr, sal_Int32 nCellType ); - void setCellArrayFormula( const ::css::table::CellRangeAddress& rRangeAddress, - const ::css::table::CellAddress& rTokenAddress, + void setCellArrayFormula( const css::table::CellRangeAddress& rRangeAddress, + const css::table::CellAddress& rTokenAddress, const OUString& ); - void createSharedFormulaMapEntry( const ::css::table::CellAddress& rAddress, - const ::css::table::CellRangeAddress& rRange, + void createSharedFormulaMapEntry( const css::table::CellAddress& rAddress, + const css::table::CellRangeAddress& rRange, sal_Int32 nSharedId, const OUString& rTokens ); /// ensure sizes of vectors matches the number of sheets diff --git a/sfx2/source/view/sfxbasecontroller.cxx b/sfx2/source/view/sfxbasecontroller.cxx index 9c07350be105..51c73c1a8c9c 100644 --- a/sfx2/source/view/sfxbasecontroller.cxx +++ b/sfx2/source/view/sfxbasecontroller.cxx @@ -1524,7 +1524,7 @@ void SAL_CALL SfxBaseController::removeTitleChangeListener(const Reference< fram xBroadcaster->removeTitleChangeListener (xListener); } -void SfxBaseController::initialize( const ::css::uno::Sequence< ::css::uno::Any >& /*aArguments*/ ) throw (css::uno::RuntimeException, std::exception) +void SfxBaseController::initialize( const css::uno::Sequence< css::uno::Any >& /*aArguments*/ ) throw (css::uno::RuntimeException, std::exception) { if (m_pData->m_pViewShell) m_pData->m_pViewShell->Initialize(); diff --git a/sw/inc/dbmgr.hxx b/sw/inc/dbmgr.hxx index c4c6ad11b0f8..4eb8721b64b7 100644 --- a/sw/inc/dbmgr.hxx +++ b/sw/inc/dbmgr.hxx @@ -137,16 +137,16 @@ struct SwMergeDescriptor const ::svx::ODataAccessDescriptor& rDescriptor; OUString sSaveToFilter; ///< export filter to save resulting files OUString sSaveToFilterOptions; - ::css::uno::Sequence< ::css::beans::PropertyValue > aSaveToFilterData; + css::uno::Sequence< css::beans::PropertyValue > aSaveToFilterData; OUString sSubject; OUString sAddressFromColumn; OUString sMailBody; OUString sAttachmentName; - ::css::uno::Sequence< OUString > aCopiesTo; - ::css::uno::Sequence< OUString > aBlindCopiesTo; + css::uno::Sequence< OUString > aCopiesTo; + css::uno::Sequence< OUString > aBlindCopiesTo; - ::css::uno::Reference< ::css::mail::XSmtpService > xSmtpServer; + css::uno::Reference< css::mail::XSmtpService > xSmtpServer; bool bSendAsHTML; bool bSendAsAttachment; @@ -247,7 +247,7 @@ public: void GetColumnNames(ListBox* pListBox, const OUString& rDBName, const OUString& rTableName, bool bAppend = false); void GetColumnNames(ListBox* pListBox, - ::css::uno::Reference< ::css::sdbc::XConnection> xConnection, + css::uno::Reference< css::sdbc::XConnection> xConnection, const OUString& rTableName, bool bAppend = false); sal_uLong GetColumnFmt( ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDataSource> xSource, diff --git a/sw/inc/splargs.hxx b/sw/inc/splargs.hxx index 438a2f55ffe9..2771e90d6b3b 100644 --- a/sw/inc/splargs.hxx +++ b/sw/inc/splargs.hxx @@ -109,7 +109,7 @@ struct SwSpellArgs : SwArgsBase class SwInterHyphInfo { - ::css::uno::Reference< ::css::linguistic2::XHyphenatedWord > xHyphWord; + css::uno::Reference< css::linguistic2::XHyphenatedWord > xHyphWord; const Point aCrsrPos; bool bNoLang : 1; bool bCheck : 1; @@ -143,11 +143,11 @@ public: bool IsCheck() const { return bCheck; } void SetCheck( const bool bNew ) { bCheck = bNew; } void SetNoLang( const bool bNew ) { bNoLang = bNew; } - void SetHyphWord(const ::css::uno::Reference< ::css::linguistic2::XHyphenatedWord > &rxHW) + void SetHyphWord(const css::uno::Reference< css::linguistic2::XHyphenatedWord > &rxHW) { xHyphWord = rxHW; } - ::css::uno::Reference< ::css::linguistic2::XHyphenatedWord > GetHyphWord() + css::uno::Reference< css::linguistic2::XHyphenatedWord > GetHyphWord() { return xHyphWord; } diff --git a/uui/source/sslwarndlg.cxx b/uui/source/sslwarndlg.cxx index 991520fe4a68..11e183f2a7af 100644 --- a/uui/source/sslwarndlg.cxx +++ b/uui/source/sslwarndlg.cxx @@ -29,9 +29,9 @@ using namespace css; void SSLWarnDialog::ViewCert() { - uno::Reference< ::css::security::XDocumentDigitalSignatures > xDocumentDigitalSignatures; + uno::Reference< css::security::XDocumentDigitalSignatures > xDocumentDigitalSignatures; - xDocumentDigitalSignatures = ::css::security::DocumentDigitalSignatures::createDefault( m_xContext ); + xDocumentDigitalSignatures = css::security::DocumentDigitalSignatures::createDefault( m_xContext ); xDocumentDigitalSignatures.get()->showCertificate(getCert()); } diff --git a/uui/source/unknownauthdlg.cxx b/uui/source/unknownauthdlg.cxx index 3e315f2b082a..44e4bdd28f8d 100644 --- a/uui/source/unknownauthdlg.cxx +++ b/uui/source/unknownauthdlg.cxx @@ -46,10 +46,10 @@ IMPL_LINK_NOARG(UnknownAuthDialog, OKHdl_Impl) IMPL_LINK_NOARG(UnknownAuthDialog, ViewCertHdl_Impl) { - uno::Reference< ::css::security::XDocumentDigitalSignatures > xDocumentDigitalSignatures; + uno::Reference< css::security::XDocumentDigitalSignatures > xDocumentDigitalSignatures; - xDocumentDigitalSignatures = uno::Reference< ::css::security::XDocumentDigitalSignatures >( - ::css::security::DocumentDigitalSignatures::createDefault(m_xContext) ); + xDocumentDigitalSignatures = uno::Reference< css::security::XDocumentDigitalSignatures >( + css::security::DocumentDigitalSignatures::createDefault(m_xContext) ); xDocumentDigitalSignatures.get()->showCertificate(getCert()); diff --git a/winaccessibility/source/service/msaaservice_impl.cxx b/winaccessibility/source/service/msaaservice_impl.cxx index 88b78e05c2a3..6e69cd744262 100644 --- a/winaccessibility/source/service/msaaservice_impl.cxx +++ b/winaccessibility/source/service/msaaservice_impl.cxx @@ -69,8 +69,8 @@ public: // XComponent - as used by VCL to lifecycle manage this bridge. virtual void SAL_CALL dispose(); - virtual void SAL_CALL addEventListener( const ::css::uno::Reference< ::css::lang::XEventListener >& ) { /* dummy */ } - virtual void SAL_CALL removeEventListener( const ::css::uno::Reference< ::css::lang::XEventListener >& ) { /* dummy */ } + virtual void SAL_CALL addEventListener( const css::uno::Reference< css::lang::XEventListener >& ) { /* dummy */ } + virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& ) { /* dummy */ } // XMSAAService virtual sal_Int64 SAL_CALL getAccObjectPtr( diff --git a/writerfilter/source/dmapper/GraphicImport.cxx b/writerfilter/source/dmapper/GraphicImport.cxx index 11f5a73345c2..8ede56051d3b 100644 --- a/writerfilter/source/dmapper/GraphicImport.cxx +++ b/writerfilter/source/dmapper/GraphicImport.cxx @@ -643,7 +643,7 @@ void GraphicImport::lcl_attribute(Id nName, Value& rValue) sal_Int32 nRotation = 0; xShapeProps->getPropertyValue("RotateAngle") >>= nRotation; - ::css::beans::PropertyValues aGrabBag; + css::beans::PropertyValues aGrabBag; bool bContainsEffects = false; xShapeProps->getPropertyValue("InteropGrabBag") >>= aGrabBag; for( sal_Int32 i = 0; i < aGrabBag.getLength(); ++i ) |