summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpdocdata.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-06-07 23:02:48 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-06-07 23:03:11 +0900
commiteb0497307bf381e7e065fc4b0b0d7b23f6ceeca9 (patch)
treef8408dea01957f913c4cd748ad38111805244a92 /lotuswordpro/source/filter/lwpdocdata.cxx
parent9af0eb7e998c7bbf514e324919b710a0ff601244 (diff)
nuke dead code
Change-Id: Id9920ea7b82ea178e904f78bbd41ffc434813e0b
Diffstat (limited to 'lotuswordpro/source/filter/lwpdocdata.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpdocdata.cxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/lotuswordpro/source/filter/lwpdocdata.cxx b/lotuswordpro/source/filter/lwpdocdata.cxx
index 2f2526c527ce..a54a2ff2d7ac 100644
--- a/lotuswordpro/source/filter/lwpdocdata.cxx
+++ b/lotuswordpro/source/filter/lwpdocdata.cxx
@@ -60,8 +60,6 @@
#include "lwpfilehdr.hxx"
#include "lwpglobalmgr.hxx"
-//std::map<sal_uInt16,LwpEditorAttr*> LwpDocData::m_EditorAttrMap;
-
LwpDocData::LwpDocData(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
:LwpObject(objHdr, pStrm)//m_pEditorAttrList(0)
{}
@@ -340,42 +338,5 @@ void LwpDocData::Parse(IXFStream *pOutputStream)
xfMeta.SetEditTime(TimeToOUString(m_nTotalEditTime));
xfMeta.ToXml(pOutputStream);
}
-/*
-OUString LwpDocData::GetEditorName(sal_uInt8 nID)
-{
- std::map<sal_uInt16,LwpEditorAttr*>::iterator iter;
- iter = m_EditorAttrMap.find(nID);
- if (iter != m_EditorAttrMap.end())
- return iter->second->cName.str();
- return A2OUSTR("");
-}
-
-XFColor LwpDocData::GetHighLightColor(sal_uInt8 nID)
-{
- std::map<sal_uInt16,LwpEditorAttr*>::iterator iter;
-
- iter = m_EditorAttrMap.find(nID);
- if (iter != m_EditorAttrMap.end())
- {
- LwpColor aLwpColor = iter->second->cHiLiteColor;
- XFColor aColor(aLwpColor.GetRed(),aLwpColor.GetGreen(),aLwpColor.GetBlue());
- return aColor;
- }
- else
- {
- XFColor aColor(255,255,0);//yellow
- return aColor;
- }
-}
-void LwpDocData::Reset()
-{
- std::map<sal_uInt16,LwpEditorAttr*>::iterator iter;
- for (iter =m_EditorAttrMap.begin();iter != m_EditorAttrMap.end(); iter++)
- {
- delete iter->second;
- iter->second = NULL;
- }
- m_EditorAttrMap.clear();
-}*/
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */