summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/dp_log.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /desktop/source/deployment/dp_log.cxx
parentb81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff)
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'desktop/source/deployment/dp_log.cxx')
-rw-r--r--desktop/source/deployment/dp_log.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/desktop/source/deployment/dp_log.cxx b/desktop/source/deployment/dp_log.cxx
index 663ffa0458fd..b5a29ed42b80 100644
--- a/desktop/source/deployment/dp_log.cxx
+++ b/desktop/source/deployment/dp_log.cxx
@@ -62,12 +62,12 @@ public:
virtual void SAL_CALL pop() throw (RuntimeException);
};
-//______________________________________________________________________________
+
ProgressLogImpl::~ProgressLogImpl()
{
}
-//______________________________________________________________________________
+
void ProgressLogImpl::disposing()
{
try {
@@ -83,7 +83,7 @@ void ProgressLogImpl::disposing()
}
}
-//______________________________________________________________________________
+
ProgressLogImpl::ProgressLogImpl(
Sequence<Any> const & args,
Reference<XComponentContext> const & xContext )
@@ -125,7 +125,7 @@ ProgressLogImpl::ProgressLogImpl(
log_write( buf.makeStringAndClear() );
}
-//______________________________________________________________________________
+
void ProgressLogImpl::log_write( OString const & text )
{
try {
@@ -144,7 +144,7 @@ void ProgressLogImpl::log_write( OString const & text )
}
// XProgressHandler
-//______________________________________________________________________________
+
void ProgressLogImpl::push( Any const & Status )
throw (RuntimeException)
{
@@ -153,7 +153,7 @@ void ProgressLogImpl::push( Any const & Status )
++m_log_level;
}
-//______________________________________________________________________________
+
void ProgressLogImpl::update( Any const & Status )
throw (RuntimeException)
{
@@ -178,7 +178,7 @@ void ProgressLogImpl::update( Any const & Status )
buf.makeStringAndClear(), osl_getThreadTextEncoding() ) );
}
-//______________________________________________________________________________
+
void ProgressLogImpl::pop() throw (RuntimeException)
{
OSL_ASSERT( m_log_level > 0 );