~ubuntu-branches/ubuntu/trusty/scribus/trusty

« back to all changes in this revision

Viewing changes to scribus/cmykfw.cpp

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-05-16 20:34:07 UTC
  • mfrom: (1.1.13) (32.1.2 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130516203407-ztj7ebsivoo41dih
Tags: 1.4.2.dfsg+r18267-1ubuntu2
Avoid qreal/double type clashes on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        cyd = cmyk.y / 2.55;
84
84
        ckd = cmyk.k / 2.55;
85
85
        RGBColor rgb;
86
 
        double crd, cgd, cbd;
87
86
        ScColorEngine::getRGBValues(orig, m_doc, rgb);
88
 
        crd = rgb.r / 2.55;
89
 
        cgd = rgb.g / 2.55;
90
 
        cbd = rgb.b / 2.55;
91
87
        resize( 498, 306 );
92
88
        setWindowTitle( tr( "Edit Color" ) );
93
89
        setWindowIcon(QIcon(loadIcon("AppIcon.png")));