~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to libs/dmetadata/template.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-21 23:19:11 UTC
  • mfrom: (1.2.33 upstream) (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20101221231911-z9jip7s5aht1jqn9
Tags: 2:1.7.0-1ubuntu1
* Merge from Debian Experimental. Remaining Ubuntu changes:
  - Export .pot name and copy to plugins in debian/rules
  - Version build-depends on kipi-plugins-dev to ensure build is against the
    same version on all archs
* Drop debian/patches/kubuntu_01_linker.diff, incoporated upstream
* Remove patches directory and unused patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    bool b8  = m_locationInfo    == t.m_locationInfo;
54
54
    bool b9  = m_contactInfo     == t.m_contactInfo;
55
55
    bool b10 = m_subjects        == t.m_subjects;
56
 
/*
57
 
    kDebug() << t.authors()         << m_authors         << b1;
58
 
    kDebug() << t.authorsPosition() << m_authorsPosition << b2;
59
 
    kDebug() << t.credit()          << m_credit          << b3;
60
 
    kDebug() << t.copyright()       << m_copyright       << b4;
61
 
    kDebug() << t.rightUsageTerms() << m_rightUsageTerms << b5;
62
 
    kDebug() << t.source()          << m_source          << b6;
63
 
    kDebug() << t.instructions()    << m_instructions    << b7;
64
 
    kDebug() << t.locationInfo()    << m_locationInfo    << b8;
65
 
    kDebug() << t.contactInfo()     << m_contactInfo     << b9;
66
 
    kDebug() << t.IptcSubjects()    << m_subjects        << b10;
67
 
*/
 
56
    /*
 
57
        kDebug() << t.authors()         << m_authors         << b1;
 
58
        kDebug() << t.authorsPosition() << m_authorsPosition << b2;
 
59
        kDebug() << t.credit()          << m_credit          << b3;
 
60
        kDebug() << t.copyright()       << m_copyright       << b4;
 
61
        kDebug() << t.rightUsageTerms() << m_rightUsageTerms << b5;
 
62
        kDebug() << t.source()          << m_source          << b6;
 
63
        kDebug() << t.instructions()    << m_instructions    << b7;
 
64
        kDebug() << t.locationInfo()    << m_locationInfo    << b8;
 
65
        kDebug() << t.contactInfo()     << m_contactInfo     << b9;
 
66
        kDebug() << t.IptcSubjects()    << m_subjects        << b10;
 
67
    */
68
68
    return b1 && b2 && b3 && b4 && b5 && b6 && b7 && b8 && b9 && b10;
69
69
}
70
70