diff options
| author | jghali <jghali@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-12 12:38:49 +0000 |
|---|---|---|
| committer | jghali <jghali@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-12 12:38:49 +0000 |
| commit | 528b1a495fb3229d6d12ab15141cafe06cb21835 (patch) | |
| tree | b6b12530c6c8b5f5f94d5db8accf988aac82d870 /scribus/documentinformation.cpp | |
| parent | cb460dacf92e499ace7a4958aeb9c1f562c8eaf5 (diff) | |
| download | scribus-528b1a495fb3229d6d12ab15141cafe06cb21835.tar.gz scribus-528b1a495fb3229d6d12ab15141cafe06cb21835.tar.xz scribus-528b1a495fb3229d6d12ab15141cafe06cb21835.zip | |
#10512: No way to specify subject in PDF file
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17195 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/documentinformation.cpp')
| -rw-r--r-- | scribus/documentinformation.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
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; |
