summaryrefslogtreecommitdiff
path: root/sw/source/ui/fldui/fldvar.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2009-03-13 21:05:03 +0000
committerVladimir Glazounov <vg@openoffice.org>2009-03-13 21:05:03 +0000
commit918cbb184487bdaf698077230f068e5ffa16d183 (patch)
tree900a993792b0ec5675a14801a3508eab9e23f2ea /sw/source/ui/fldui/fldvar.cxx
parent52249585a629419230e9727da04b3e2bdcbf229b (diff)
CWS-TOOLING: integrate CWS cmcfixes53
2009-03-13 14:38:36 +0100 cmc r269480 : gcc44 problems 2009-01-07 14:40:49 +0100 cmc r265968 : #i97835# remove some long-hanging unused methods 2009-01-07 14:16:47 +0100 cmc r265966 : #i97833# DDE_AVAILABLE is always false in binfilter 2009-01-07 14:06:40 +0100 cmc r265965 : #i97831# DDE_AVAILABLE is always true so remove the ifdefs to de-clutter the code
Diffstat (limited to 'sw/source/ui/fldui/fldvar.cxx')
-rw-r--r--sw/source/ui/fldui/fldvar.cxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/sw/source/ui/fldui/fldvar.cxx b/sw/source/ui/fldui/fldvar.cxx
index 6ff1d17ac2..0c3a3e070a 100644
--- a/sw/source/ui/fldui/fldvar.cxx
+++ b/sw/source/ui/fldui/fldvar.cxx
@@ -143,14 +143,8 @@ void SwFldVarPage::Reset(const SfxItemSet& )
for (short i = rRg.nStart; i < rRg.nEnd; ++i)
{
nTypeId = GetFldMgr().GetTypeId(i);
-
-#ifndef DDE_AVAILABLE
- if (nTypeId != TYP_DDEFLD)
-#endif
- { // Nur unter WIN, WNT und OS/2 DDE-Fields
- nPos = aTypeLB.InsertEntry(GetFldMgr().GetTypeStr(i));
- aTypeLB.SetEntryData(nPos, reinterpret_cast<void*>(nTypeId));
- }
+ nPos = aTypeLB.InsertEntry(GetFldMgr().GetTypeStr(i));
+ aTypeLB.SetEntryData(nPos, reinterpret_cast<void*>(nTypeId));
}
}
else