1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
4 # T2 SDE: package/.../tse3/tse3_type.patch
5 # Copyright (C) 2004 - 2005 The T2 SDE Project
7 # More information can be found in the files COPYING and README.
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
15 # --- T2-COPYRIGHT-NOTE-END ---
16 --- tse3-0.2.7/src/tse3/file/Track.cpp.orig 2005-08-23 15:34:25.000000000 -0700
17 +++ tse3-0.2.7/src/tse3/file/Track.cpp 2005-08-23 15:13:04.000000000 -0700
19 write(writer, *t.filter());
20 write(writer, *t.params());
21 write(writer, *t.displayParams());
22 - writer.element("NoParts", t.size());
23 + writer.element("NoParts", (unsigned int)t.size());
25 for (size_t n = 0; n < t.size(); ++n)
27 --- tse3-0.2.7/src/tse3/file/Song.cpp.orig 2005-08-23 15:35:22.000000000 -0700
28 +++ tse3-0.2.7/src/tse3/file/Song.cpp 2005-08-23 15:13:03.000000000 -0700
30 writer.element("Author", song.author());
31 writer.element("Copyright", song.copyright());
32 writer.element("Date", song.date());
33 - writer.element("NoTracks", song.size());
34 + writer.element("NoTracks", (unsigned int)song.size());
36 writer.comment("Master tracks");
37 write(writer, *song.tempoTrack());