summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/pdf/pdfwriter_impl.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/pdf/pdfwriter_impl.hxx b/vcl/inc/pdf/pdfwriter_impl.hxx
index 6781d0f935fd..2d931ba729f8 100644
--- a/vcl/inc/pdf/pdfwriter_impl.hxx
+++ b/vcl/inc/pdf/pdfwriter_impl.hxx
@@ -573,7 +573,7 @@ typedef ::std::variant<ObjReference, ObjReferenceObj, MCIDReference> PDFStructur
struct PDFStructureElement
{
sal_Int32 m_nObject;
- ::std::optional<PDFWriter::StructElement> m_oType;
+ std::optional<vcl::pdf::StructElement> m_oType;
OString m_aAlias;
sal_Int32 m_nOwnElement; // index into structure vector
sal_Int32 m_nParentElement; // index into structure vector
@@ -694,8 +694,8 @@ class PDFWriterImpl final : public VirtualDevice, public PDFObjectContainer
public:
friend struct vcl::pdf::PDFPage;
- const char* getStructureTag( PDFWriter::StructElement );
- static const char* getAttributeTag( PDFWriter::StructAttribute eAtr );
+ const char* getStructureTag(vcl::pdf::StructElement eElement);
+ static const char* getAttributeTag(PDFWriter::StructAttribute eAtr );
static const char* getAttributeValueTag( PDFWriter::StructAttributeValue eVal );
// returns true if compression was done
@@ -857,7 +857,7 @@ private:
/* the buffer where the data are encrypted, dynamically allocated */
std::vector<sal_uInt8> m_vEncryptionBuffer;
- void addRoleMap(const OString& aAlias, PDFWriter::StructElement eType);
+ void addRoleMap(const OString& aAlias, vcl::pdf::StructElement eType);
void checkAndEnableStreamEncryption( sal_Int32 nObject ) override;
@@ -1295,7 +1295,7 @@ public:
sal_Int32 createNote(const tools::Rectangle& rRect, const tools::Rectangle& rPopupRect, const PDFNote& rNote, sal_Int32 nPageNr);
// structure elements
sal_Int32 ensureStructureElement();
- void initStructureElement(sal_Int32 id, PDFWriter::StructElement eType, std::u16string_view rAlias);
+ void initStructureElement(sal_Int32 id, vcl::pdf::StructElement eType, std::u16string_view rAlias);
void beginStructureElement(sal_Int32 id);
void endStructureElement();
bool setCurrentStructureElement( sal_Int32 nElement );