summaryrefslogtreecommitdiff
path: root/comphelper/source/misc
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 /comphelper/source/misc
parent85e94e11bc24c7bf6f4221f488f7529dcb8d8b00 (diff)
remove empty ascii boxes and stuff III
Change-Id: I8b54e8518c219a7edd7e29173a1099611a7e0dbb
Diffstat (limited to 'comphelper/source/misc')
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx3
-rw-r--r--comphelper/source/misc/sequenceashashmap.cxx45
2 files changed, 0 insertions, 48 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;