~ubuntu-branches/ubuntu/wily/scribus/wily-proposed

« back to all changes in this revision

Viewing changes to scribus/documentinformation.h

  • Committer: Package Import Robot
  • Author(s): Oleksandr Moskalenko
  • Date: 2012-02-09 21:50:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120209215056-2wrx1ara0jbm7fi5
Tags: 1.4.0.dfsg+r17287-1
* New upstream stable release upload into Debian (Closes: #654703).
* Applied the Ubuntu armel patch.
* Removed non-free color swatches from resources.
* debian/control:
  - Moved icc-profiles from Recommends to Suggests (Closes: #655885).
  - Updated Standards-Version to 3.9.2.
  - Updated extended description per lintian warning.
* debian/rules:
  - Update mailcap (Closes: #630751). A request for mime.types update has
    been sent to the mime-support maintainer.
  - Added build-arch and build-indep targets per lintian warning.
* debian/patches:
  - top_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't install the non-free "doc" dir.
  - profiles_cmakelists.patch - don't install non-free sRGB profile.
* debian/copyright: 
  - Converted to the DEP5 machine readable foramt.
  - Added licenses for free color swatches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                const QString getRelation();
44
44
                const QString getRights();
45
45
                const QString getSource();
 
46
                const QString getSubject();
46
47
                const QString getTitle();
47
48
                const QString getType();
48
49
                
59
60
                void setRelation(const QString &_relation);
60
61
                void setRights(const QString &_rights);
61
62
                void setSource(const QString &_source);
 
63
                void setSubject(const QString &_subject);
62
64
                void setTitle(const QString &_title);
63
65
                void setType(const QString &_type);
64
66
                
76
78
                QString relation;
77
79
                QString rights;
78
80
                QString source;
 
81
                QString subject;
79
82
                QString title;
80
83
                QString type;
81
84
};