summaryrefslogtreecommitdiff
path: root/filter/source/graphicfilter/epgm/epgm.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 /filter/source/graphicfilter/epgm/epgm.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 'filter/source/graphicfilter/epgm/epgm.cxx')
-rw-r--r--filter/source/graphicfilter/epgm/epgm.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/filter/source/graphicfilter/epgm/epgm.cxx b/filter/source/graphicfilter/epgm/epgm.cxx
index 3a61cf0b0dfe..5c151be2ab3b 100644
--- a/filter/source/graphicfilter/epgm/epgm.cxx
+++ b/filter/source/graphicfilter/epgm/epgm.cxx
@@ -62,13 +62,13 @@ PGMWriter::PGMWriter(SvStream &rStream)
{
}
-// ------------------------------------------------------------------------
+
PGMWriter::~PGMWriter()
{
}
-// ------------------------------------------------------------------------
+
sal_Bool PGMWriter::WritePGM( const Graphic& rGraphic, FilterConfigItem* pFilterConfigItem )
{
@@ -111,7 +111,7 @@ sal_Bool PGMWriter::WritePGM( const Graphic& rGraphic, FilterConfigItem* pFilter
return mbStatus;
}
-// ------------------------------------------------------------------------
+
sal_Bool PGMWriter::ImplWriteHeader()
{
@@ -137,7 +137,7 @@ sal_Bool PGMWriter::ImplWriteHeader()
return mbStatus;
}
-// ------------------------------------------------------------------------
+
void PGMWriter::ImplWriteBody()
{
@@ -199,7 +199,7 @@ void PGMWriter::ImplWriteBody()
}
}
-// ------------------------------------------------------------------------
+
// write a decimal number in ascii format into the stream
void PGMWriter::ImplWriteNumber(sal_Int32 nNumber)
{
@@ -207,11 +207,11 @@ void PGMWriter::ImplWriteNumber(sal_Int32 nNumber)
m_rOStm.WriteCharPtr( aNum.getStr() );
}
-// ------------------------------------------------------------------------
-// ---------------------
+
+
// - exported function -
-// ---------------------
+
// this needs to be kept in sync with
// ImpFilterLibCacheEntry::GetImportFunction() from
@@ -228,7 +228,7 @@ GraphicExport(SvStream& rStream, Graphic& rGraphic, FilterConfigItem* pFilterCon
return aPGMWriter.WritePGM( rGraphic, pFilterConfigItem );
}
-// ------------------------------------------------------------------------
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */