~ubuntu-branches/debian/experimental/smplayer/experimental

« back to all changes in this revision

Viewing changes to src/videoequalizer.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Maia Kozheva
  • Date: 2009-01-03 17:08:06 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090103170806-eodntb2slv6g2pb6
Tags: 0.6.6-0ubuntu1
* The "just before FF" release.
* New upstream release.
* debian/control: Bumped Standards-Version to 3.8.0.
* debian/copyright: Changed (C) to © to fix Lintian warning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "global.h"
24
24
#include <QLayout>
25
25
#include <QPushButton>
26
 
/*
27
 
#include <QVBoxLayout>
28
 
#include <QHBoxLayout>
29
 
*/
 
26
#include <QMessageBox>
30
27
 
31
28
using namespace Global;
32
29
 
69
66
}
70
67
 
71
68
void VideoEqualizer::retranslateStrings() {
72
 
        setWindowTitle( tr("Equalizer") );
 
69
        setWindowTitle( tr("Video Equalizer") );
73
70
        setWindowIcon( Images::icon("logo") );
74
71
 
75
72
        contrast->setLabel( tr("Contrast") );
117
114
        pref->initial_hue = hue->value();
118
115
        pref->initial_saturation = saturation->value();
119
116
        pref->initial_gamma = gamma->value();
 
117
 
 
118
        QMessageBox::information(this, tr("Information"), 
 
119
                             tr("The current values have been stored to be "
 
120
                                "used as default.") );
120
121
}
121
122
 
122
123
void VideoEqualizer::hideEvent( QHideEvent * ) {