~ubuntu-branches/ubuntu/saucy/clementine/saucy

« back to all changes in this revision

Viewing changes to src/analyzers/sonogram.cpp

  • Committer: Package Import Robot
  • Author(s): Thomas PIERSON
  • Date: 2012-01-01 20:43:39 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120101204339-lsb6nndwhfy05sde
Tags: 1.0.1+dfsg-1
New upstream release. (Closes: #653926, #651611, #657391)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
}
43
43
 
44
44
 
45
 
void Sonogram::analyze(QPainter& p, const Scope &s)
 
45
void Sonogram::analyze(QPainter& p, const Scope &s, bool new_frame)
46
46
{
47
47
    int x = width() - 1;
48
48
    QColor c;
85
85
 
86
86
void Sonogram::demo(QPainter& p)
87
87
{
88
 
    analyze(p, Scope(m_fht->size(), 0));
 
88
    analyze(p, Scope(m_fht->size(), 0), new_frame_);
89
89
}
90
90