diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2005-07-30 16:56:30 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2005-07-30 16:56:30 +0000 |
commit | c5694148b926829a08e635ca559b3f7c54cff6ef (patch) | |
tree | 7863db41a6d387bbf456121a4fe1af86a118a248 /media-libs/tse3/files | |
parent | not yet. (diff) | |
download | gentoo-2-c5694148b926829a08e635ca559b3f7c54cff6ef.tar.gz gentoo-2-c5694148b926829a08e635ca559b3f7c54cff6ef.tar.bz2 gentoo-2-c5694148b926829a08e635ca559b3f7c54cff6ef.zip |
GCC 4 patch, closes bug #100708.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-libs/tse3/files')
-rw-r--r-- | media-libs/tse3/files/tse3-0.2.7-gcc4.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-libs/tse3/files/tse3-0.2.7-gcc4.patch b/media-libs/tse3/files/tse3-0.2.7-gcc4.patch new file mode 100644 index 000000000000..7f32076323b6 --- /dev/null +++ b/media-libs/tse3/files/tse3-0.2.7-gcc4.patch @@ -0,0 +1,36 @@ +--- ./src/tse3/cmd/Phrase.h~ 2002-07-28 17:17:11.000000000 +0200 ++++ ./src/tse3/cmd/Phrase.h 2005-07-29 15:45:03.000000000 +0200 +@@ -19,6 +19,7 @@ + + #include "tse3/cmd/Command.h" + #include "tse3/Phrase.h" ++#include "tse3/PhraseEdit.h" + #include "tse3/DisplayParams.h" + + #include <vector> +--- ./src/tse3/file/XML.h~ 2005-07-29 15:37:31.000000000 +0200 ++++ ./src/tse3/file/XML.h 2005-07-29 15:50:03.000000000 +0200 +@@ -154,7 +154,6 @@ + void element(const std::string &name, const char *value); + void element(const std::string &name, int value); + void element(const std::string &name, unsigned int value); +- void element(const std::string &name, size_t value); + void element(const std::string &name, bool value); + + void comment(const std::string &comment); +--- ./src/tse3/file/XML.cpp~ 2005-07-29 15:37:31.000000000 +0200 ++++ ./src/tse3/file/XML.cpp 2005-07-29 15:49:55.000000000 +0200 +@@ -116,13 +116,6 @@ + out << "<" << name << " value=\"" << value << "\"/>\n"; + } + +-void TSE3::File::XmlFileWriter::element(const std::string &name, size_t value) +-{ +- indent(out); +- out << "<" << name << " value=\"" << value << "\"/>\n"; +-} +- +- + void TSE3::File::XmlFileWriter::element(const std::string &name, bool value) + { + indent(out); |