summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-07 15:44:39 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-07 18:08:29 +0200
commit87f242e036082c1b659536dec2bf779d88910249 (patch)
tree3df8d39b1d86c95c9150bbab8d165f52968ccdea
parent85e94e11bc24c7bf6f4221f488f7529dcb8d8b00 (diff)
remove empty ascii boxes and stuff III
Change-Id: I8b54e8518c219a7edd7e29173a1099611a7e0dbb
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx3
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx45
-rw-r--r--ucbhelper/source/client/interceptedinteraction.cxx24
-rw-r--r--unotools/source/config/moduleoptions.cxx12
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);