~ubuntu-branches/ubuntu/raring/calligra/raring-proposed

« back to all changes in this revision

Viewing changes to krita/plugins/formats/psd/psd_header.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-01-15 17:26:10 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20130115172610-b193s9546hyssmym
Tags: 1:2.5.94-0ubuntu1
New upstream RC release

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 
74
74
bool PSDHeader::write(QIODevice* device)
75
75
{
76
 
    Q_ASSERT(valid());
77
76
    if (!valid()) return false;
78
77
    if (!psdwrite(device, signature)) return false;
79
78
    if (!psdwrite(device, version)) return false;