diff options
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; |
