~ubuntu-branches/ubuntu/karmic/rosegarden/karmic

« back to all changes in this revision

Viewing changes to src/test/transpose.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-02 00:33:44 UTC
  • mfrom: (1.1.7 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080502003344-67vbfhgqx2yl0ksi
Tags: 1:1.7.0-1ubuntu1
* Merge from Debian unstable. (LP: #225849) Remaining Ubuntu changes:
  - Add usr/share/doc/kde/HTML to rosegarden-data, to provide online
    help documentation.
  - Change fftw3-dev to libfftw3-dev.
  - Update maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
        + testIntervalString(0,0,"a perfect unison")
127
127
        + testIntervalString(0,1,"up an augmented unison") 
128
128
        + testIntervalString(7,12,"up 1 octave") 
129
 
        + testIntervalString(7,13,"up 1 octave and an augmented unison");
 
129
        + testIntervalString(7,13,"up an augmented octave");
130
130
 
131
131
    QString text = IntervalDialog::getIntervalName(1, 1);
132
132
    std::cout << "Minor second: " << text << std::endl;
147
147
    return testAisDisplayAccidentalInCmaj() +
148
148
        testAisToBis() +
149
149
        testGToD() +
150
 
        testCisToC() +
151
150
        testTransposeBbToF() +
152
 
        testIntervalToString();
 
151
        testIntervalToString() +
 
152
        testCisToC();
153
153
        
154
154
}