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

« back to all changes in this revision

Viewing changes to digikam/imageplugins/coreplugin/imageeffect_rgb.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:
91
91
    m_channelCB->insertItem( i18n("Red") );
92
92
    m_channelCB->insertItem( i18n("Green") );
93
93
    m_channelCB->insertItem( i18n("Blue") );
94
 
    QWhatsThis::add( m_channelCB, i18n("<p>Select here the histogram channel to display:<p>"
 
94
    QWhatsThis::add( m_channelCB, i18n("<p>Select the histogram channel to display here:<p>"
95
95
                                       "<b>Luminosity</b>: display the image's luminosity values.<p>"
96
96
                                       "<b>Red</b>: display the red image-channel values.<p>"
97
97
                                       "<b>Green</b>: display the green image-channel values.<p>"
101
101
    m_scaleBG->setExclusive(true);
102
102
    m_scaleBG->setFrameShape(QFrame::NoFrame);
103
103
    m_scaleBG->setInsideMargin( 0 );
104
 
    QWhatsThis::add( m_scaleBG, i18n("<p>Select here the histogram scale.<p>"
 
104
    QWhatsThis::add( m_scaleBG, i18n("<p>Select the histogram scale here.<p>"
105
105
                                     "If the image's maximal counts are small, you can use the linear scale.<p>"
106
106
                                     "Logarithmic scale can be used when the maximal counts are big; "
107
107
                                     "if it is used, all values (small and large) will be visible on the graph."));