diff options
-rw-r--r-- | comphelper/source/misc/mediadescriptor.cxx | 3 | ||||
-rw-r--r-- | comphelper/source/misc/sequenceashashmap.cxx | 45 | ||||
-rw-r--r-- | ucbhelper/source/client/interceptedinteraction.cxx | 24 | ||||
-rw-r--r-- | unotools/source/config/moduleoptions.cxx | 12 |
4 files changed, 0 insertions, 84 deletions
diff --git a/comphelper/source/misc/mediadescriptor.cxx b/comphelper/source/misc/mediadescriptor.cxx index a23c15345620..cf15e244ded4 100644 --- a/comphelper/source/misc/mediadescriptor.cxx +++ b/comphelper/source/misc/mediadescriptor.cxx @@ -297,9 +297,6 @@ const ::rtl::OUString& MediaDescriptor::PROP_DOCUMENTBASEURL() return sProp; } -/*----------------------------------------------- - 10.03.2004 08:09 ------------------------------------------------*/ MediaDescriptor::MediaDescriptor() : SequenceAsHashMap() { diff --git a/comphelper/source/misc/sequenceashashmap.cxx b/comphelper/source/misc/sequenceashashmap.cxx index e628b660104d..97dfcc5dd8a1 100644 --- a/comphelper/source/misc/sequenceashashmap.cxx +++ b/comphelper/source/misc/sequenceashashmap.cxx @@ -32,17 +32,11 @@ namespace css = ::com::sun::star; //_______________________________________________ // definitions -/*----------------------------------------------- - 04.11.2003 09:29 ------------------------------------------------*/ SequenceAsHashMap::SequenceAsHashMap() : SequenceAsHashMapBase() { } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ SequenceAsHashMap::SequenceAsHashMap(const css::uno::Any& aSource) { (*this) << aSource; @@ -54,32 +48,20 @@ SequenceAsHashMap::SequenceAsHashMap(const css::uno::Sequence< css::uno::Any >& (*this) << lSource; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ SequenceAsHashMap::SequenceAsHashMap(const css::uno::Sequence< css::beans::PropertyValue >& lSource) { (*this) << lSource; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ SequenceAsHashMap::SequenceAsHashMap(const css::uno::Sequence< css::beans::NamedValue >& lSource) { (*this) << lSource; } -/*----------------------------------------------- - 04.11.2003 09:04 ------------------------------------------------*/ SequenceAsHashMap::~SequenceAsHashMap() { } -/*----------------------------------------------- - 04.11.2003 10:21 ------------------------------------------------*/ void SequenceAsHashMap::operator<<(const css::uno::Any& aSource) { // An empty Any reset this instance! @@ -152,9 +134,6 @@ void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::uno::Any >& lS } } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::PropertyValue >& lSource) { clear(); @@ -166,9 +145,6 @@ void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::Propert (*this)[pSource[i].Name] = pSource[i].Value; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::NamedValue >& lSource) { clear(); @@ -180,9 +156,6 @@ void SequenceAsHashMap::operator<<(const css::uno::Sequence< css::beans::NamedVa (*this)[pSource[i].Name] = pSource[i].Value; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::PropertyValue >& lDestination) const { sal_Int32 c = (sal_Int32)size(); @@ -200,9 +173,6 @@ void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::PropertyValue } } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::NamedValue >& lDestination) const { sal_Int32 c = (sal_Int32)size(); @@ -220,9 +190,6 @@ void SequenceAsHashMap::operator>>(css::uno::Sequence< css::beans::NamedValue >& } } -/*----------------------------------------------- - 30.07.2007 14:10 ------------------------------------------------*/ const css::uno::Any SequenceAsHashMap::getAsConstAny(::sal_Bool bAsPropertyValueList) const { css::uno::Any aDestination; @@ -233,9 +200,6 @@ const css::uno::Any SequenceAsHashMap::getAsConstAny(::sal_Bool bAsPropertyValue return aDestination; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ const css::uno::Sequence< css::beans::NamedValue > SequenceAsHashMap::getAsConstNamedValueList() const { css::uno::Sequence< css::beans::NamedValue > lReturn; @@ -243,9 +207,6 @@ const css::uno::Sequence< css::beans::NamedValue > SequenceAsHashMap::getAsConst return lReturn; } -/*----------------------------------------------- - 04.11.2003 08:30 ------------------------------------------------*/ const css::uno::Sequence< css::beans::PropertyValue > SequenceAsHashMap::getAsConstPropertyValueList() const { css::uno::Sequence< css::beans::PropertyValue > lReturn; @@ -253,9 +214,6 @@ const css::uno::Sequence< css::beans::PropertyValue > SequenceAsHashMap::getAsCo return lReturn; } -/*----------------------------------------------- - 07.03.2007 12:45 ------------------------------------------------*/ sal_Bool SequenceAsHashMap::match(const SequenceAsHashMap& rCheck) const { const_iterator pCheck; @@ -278,9 +236,6 @@ sal_Bool SequenceAsHashMap::match(const SequenceAsHashMap& rCheck) const return sal_True; } -/*----------------------------------------------- - 30.07.2007 14:30 ------------------------------------------------*/ void SequenceAsHashMap::update(const SequenceAsHashMap& rUpdate) { const_iterator pUpdate; diff --git a/ucbhelper/source/client/interceptedinteraction.cxx b/ucbhelper/source/client/interceptedinteraction.cxx index 6a8d60294bbb..661869c1b163 100644 --- a/ucbhelper/source/client/interceptedinteraction.cxx +++ b/ucbhelper/source/client/interceptedinteraction.cxx @@ -32,32 +32,20 @@ namespace css = ::com::sun::star; //_______________________________________________ // definitions -/*----------------------------------------------- - 17.03.2004 11:00 ------------------------------------------------*/ InterceptedInteraction::InterceptedInteraction() { } -/*----------------------------------------------- - 17.03.2004 14:55 ------------------------------------------------*/ void InterceptedInteraction::setInterceptedHandler(const css::uno::Reference< css::task::XInteractionHandler >& xInterceptedHandler) { m_xInterceptedHandler = xInterceptedHandler; } -/*----------------------------------------------- - 17.03.2004 14:55 ------------------------------------------------*/ void InterceptedInteraction::setInterceptions(const ::std::vector< InterceptedRequest >& lInterceptions) { m_lInterceptions = lInterceptions; } -/*----------------------------------------------- - 18.03.2004 10:10 ------------------------------------------------*/ InterceptedInteraction::EInterceptionState InterceptedInteraction::intercepted( const InterceptedRequest&, const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >&) @@ -66,9 +54,6 @@ InterceptedInteraction::EInterceptionState InterceptedInteraction::intercepted( return E_NOT_INTERCEPTED; } -/*----------------------------------------------- - 18.03.2004 09:46 ------------------------------------------------*/ css::uno::Reference< css::task::XInteractionContinuation > InterceptedInteraction::extractContinuation(const css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > >& lContinuations, const css::uno::Type& aType ) { @@ -87,18 +72,12 @@ css::uno::Reference< css::task::XInteractionContinuation > InterceptedInteractio return css::uno::Reference< css::task::XInteractionContinuation >(); } -/*----------------------------------------------- - 18.03.2004 10:03 ------------------------------------------------*/ void SAL_CALL InterceptedInteraction::handle(const css::uno::Reference< css::task::XInteractionRequest >& xRequest) throw(css::uno::RuntimeException) { impl_handleDefault(xRequest); } -/*----------------------------------------------- - 18.03.2004 10:02 ------------------------------------------------*/ void InterceptedInteraction::impl_handleDefault(const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >& xRequest) { EInterceptionState eState = impl_interceptRequest(xRequest); @@ -128,9 +107,6 @@ void InterceptedInteraction::impl_handleDefault(const ::com::sun::star::uno::Ref } } -/*----------------------------------------------- - 18.03.2004 09:48 ------------------------------------------------*/ InterceptedInteraction::EInterceptionState InterceptedInteraction::impl_interceptRequest(const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionRequest >& xRequest) { css::uno::Any aRequest = xRequest->getRequest(); diff --git a/unotools/source/config/moduleoptions.cxx b/unotools/source/config/moduleoptions.cxx index 41c0c1bd2625..6d7a86917958 100644 --- a/unotools/source/config/moduleoptions.cxx +++ b/unotools/source/config/moduleoptions.cxx @@ -1237,9 +1237,6 @@ namespace return ::rtl::OUString(); } -/*----------------------------------------------- - 07.03.2004 15:03 ------------------------------------------------*/ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByShortName(const ::rtl::OUString& sName) { if ( sName == "swriter" ) @@ -1266,9 +1263,6 @@ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByShortName(const :: return E_UNKNOWN_FACTORY; } -/*----------------------------------------------- - 31.07.2003 10:41 ------------------------------------------------*/ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByServiceName(const ::rtl::OUString& sName) { if (sName.equals(FACTORYNAME_WRITERGLOBAL)) @@ -1293,9 +1287,6 @@ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByServiceName(const return E_UNKNOWN_FACTORY; } -/*----------------------------------------------- - 31.07.2003 14:39 ------------------------------------------------*/ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByURL(const ::rtl::OUString& sURL , const css::uno::Sequence< css::beans::PropertyValue >& lMediaDescriptor) { @@ -1373,9 +1364,6 @@ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByURL(const ::rtl::O return E_UNKNOWN_FACTORY; } -/*----------------------------------------------- - 31.07.2003 10:41 ------------------------------------------------*/ SvtModuleOptions::EFactory SvtModuleOptions::ClassifyFactoryByModel(const css::uno::Reference< css::frame::XModel >& xModel) { css::uno::Reference< css::lang::XServiceInfo > xInfo(xModel, css::uno::UNO_QUERY); |