diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-09-28 14:01:47 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-09-28 17:43:30 +0300 |
commit | 0f644656af1a184d95b6227853ffcdfd66b62b42 (patch) | |
tree | c6219b6b064577d5eb9fad7014f6b594db325014 /vcl/source | |
parent | 2f3d6644197a98e1c191df7943da3e50e80d606f (diff) |
WaE: declared with greater visibility than the type of its field
To be specific, 'vcl::PageSyncData' declared with greater visibility
than the type of its field 'vcl::PageSyncData::mActions'
Adding a SAL_DLLPRIVATE to the PageSyncData struct, too, then.
Warning was emitted by g++ 4.2.1 against the MacOSX 10.6 SDK.
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/pdfextoutdevdata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/pdfextoutdevdata.cxx b/vcl/source/gdi/pdfextoutdevdata.cxx index 868163d5ded8..99326c213840 100644 --- a/vcl/source/gdi/pdfextoutdevdata.cxx +++ b/vcl/source/gdi/pdfextoutdevdata.cxx @@ -298,7 +298,7 @@ void GlobalSyncData::PlayGlobalActions( PDFWriter& rWriter ) } } -struct PageSyncData +struct SAL_DLLPRIVATE PageSyncData { std::deque< PDFExtOutDevDataSync > mActions; std::deque< Rectangle > mParaRects; |