From 528b1a495fb3229d6d12ab15141cafe06cb21835 Mon Sep 17 00:00:00 2001 From: jghali Date: Thu, 12 Jan 2012 12:38:49 +0000 Subject: #10512: No way to specify subject in PDF file git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17195 11d20701-8431-0410-a711-e3c959e3b870 --- scribus/documentinformation.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'scribus/documentinformation.cpp') diff --git a/scribus/documentinformation.cpp b/scribus/documentinformation.cpp index c22cd43..38b158b 100644 --- a/scribus/documentinformation.cpp +++ b/scribus/documentinformation.cpp @@ -105,6 +105,11 @@ const QString DocumentInformation::getSource() return source; } +const QString DocumentInformation::getSubject() +{ + return subject; +} + const QString DocumentInformation::getTitle() { return title; @@ -181,6 +186,11 @@ void DocumentInformation::setSource(const QString &_source) source=_source; } +void DocumentInformation::setSubject(const QString &_subject) +{ + subject=_subject; +} + void DocumentInformation::setTitle(const QString &_title) { title=_title; -- cgit