Issue 112665

Summary: DEV300_m84 writerfilter/source/dmapper fails on Windows
Product: Writer Reporter: Stephan Bergmann <stephan.bergmann.secondary>
Component: codeAssignee: Stephan Bergmann <stephan.bergmann.secondary>
Status: CLOSED FIXED QA Contact: issues@sw <issues>
Severity: Trivial    
Priority: P1 (highest) CC: cedric.bosdonnat.ooo, issues
Version: current   
Target Milestone: ---   
Hardware: All   
OS: All   
Issue Type: DEFECT Latest Confirmation in: ---
Developer Difficulty: ---

Description Stephan Bergmann 2010-06-24 16:30:33 UTC
<http://termite.services.openoffice.org/buildbot/builders/Windows-2003/builds/1399>
on CWS sb127, effectively being latest re/DEV300_next towards DEV300_m84, fails
in writerfilter/source/dmapper with

---8<---
writerfilter.lib(NumberingManager.obj) : error LNK2019: unresolved external
symbol "public: class boost::shared_ptr<struct
writerfilter::dmapper::StyleSheetEntry> const __thiscall
writerfilter::dmapper::StyleSheetTable::FindStyleSheetByISTD(class rtl::OUString
const &)"
(?FindStyleSheetByISTD@StyleSheetTable@dmapper@writerfilter@@QAE?BV?$shared_ptr@UStyleSheetEntry@dmapper@writerfilter@@@boost@@ABVOUString@rtl@@@Z)
referenced in function "public: virtual void __thiscall
writerfilter::dmapper::ListsManager::sprm(class writerfilter::Sprm &)"
(?sprm@ListsManager@dmapper@writerfilter@@UAEXAAVSprm@3@@Z)
---8<---

The fix is probably

---8<---
diff -r b8ce59245f59 writerfilter/source/dmapper/NumberingManager.hxx
--- a/writerfilter/source/dmapper/NumberingManager.hxx  Thu Jun 24 12:08:46 2010
+0200
+++ b/writerfilter/source/dmapper/NumberingManager.hxx  Thu Jun 24 17:29:41 2010
+0200
@@ -13,7 +13,7 @@
 namespace dmapper {

 class DomainMapper;
-struct StyleSheetEntry;
+class StyleSheetEntry;


 /** Class representing the numbering level properties.
---8<---
Comment 1 oliver.bolte 2010-06-25 09:13:14 UTC
SUCCESS: in module writerfilter following files have been successfully
registered for dummy CWS dev300m84masterfix:
source/dmapper/NumberingManager.hxx	revision: 9b1390529461
Comment 2 oliver.bolte 2010-06-25 09:15:41 UTC
@sb: verify, please.
Comment 3 Stephan Bergmann 2010-06-25 15:27:23 UTC
.
Comment 4 Stephan Bergmann 2010-06-30 14:26:21 UTC
.