~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/imageplugins/coreplugin/imageeffect_autocorrection.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-ttj4and3ds1ldgn1
Tags: upstream-0.9.4
ImportĀ upstreamĀ versionĀ 0.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    m_channelCB->insertItem( i18n("Red") );
101
101
    m_channelCB->insertItem( i18n("Green") );
102
102
    m_channelCB->insertItem( i18n("Blue") );
103
 
    QWhatsThis::add( m_channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
103
    QWhatsThis::add( m_channelCB, i18n("<p>Select the histogram channel to display here:<p>"
104
104
                                       "<b>Luminosity</b>: display the image's luminosity values.<p>"
105
105
                                       "<b>Red</b>: display the red image-channel values.<p>"
106
106
                                       "<b>Green</b>: display the green image-channel values.<p>"
110
110
    m_scaleBG->setExclusive(true);
111
111
    m_scaleBG->setFrameShape(QFrame::NoFrame);
112
112
    m_scaleBG->setInsideMargin( 0 );
113
 
    QWhatsThis::add( m_scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
113
    QWhatsThis::add( m_scaleBG, i18n("<p>Select the histogram scale here.<p>"
114
114
                                     "If the image's maximal counts are small, you can use the linear scale.<p>"
115
115
                                     "Logarithmic scale can be used when the maximal counts are big; "
116
116
                                     "if it is used, all values (small and large) will be visible on the graph."));