SOURCES: libtunepimp-gcc4.patch (NEW) - remove extra quals.
pluto
pluto at pld-linux.org
Thu Nov 17 02:28:49 CET 2005
Author: pluto Date: Thu Nov 17 01:28:49 2005 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- remove extra quals.
---- Files affected:
SOURCES:
libtunepimp-gcc4.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: SOURCES/libtunepimp-gcc4.patch
diff -u /dev/null SOURCES/libtunepimp-gcc4.patch:1.1
--- /dev/null Thu Nov 17 02:28:49 2005
+++ SOURCES/libtunepimp-gcc4.patch Thu Nov 17 02:28:43 2005
@@ -0,0 +1,79 @@
+--- libtunepimp-0.4.0/include/tunepimp/metadata.h.orig 2005-11-12 00:45:45.000000000 +0100
++++ libtunepimp-0.4.0/include/tunepimp/metadata.h 2005-11-17 02:17:26.018491500 +0100
+@@ -59,7 +59,7 @@
+ // This is only used in case of TRM collision
+ int numTRMIds;
+
+- Metadata::Metadata(void)
++ Metadata(void)
+ {
+ trackNum = 0;
+ duration = 0;
+@@ -72,11 +72,11 @@
+ totalInSet = 0;
+ };
+
+- Metadata::~Metadata(void)
++ ~Metadata(void)
+ {
+ }
+
+- Metadata &Metadata::operator=(const Metadata &other)
++ Metadata& operator=(const Metadata &other)
+ {
+ artist = other.artist;
+ sortName = other.sortName;
+@@ -104,7 +104,7 @@
+ return *this;
+ };
+
+- bool Metadata::isEmpty(void)
++ bool isEmpty(void)
+ {
+ return (artist.empty() && album.empty() && track.empty() &&
+ trackNum == 0 && duration == 0 && fileTrm.empty() &&
+@@ -112,7 +112,7 @@
+ sortName.empty() && fileFormat.empty());
+ }
+
+- bool Metadata::operator==(const Metadata &other)
++ bool operator==(const Metadata &other)
+ {
+ if (artist == other.artist &&
+ album == other.album &&
+@@ -140,7 +140,7 @@
+ return false;
+ };
+
+- void Metadata::clear(void)
++ void clear(void)
+ {
+ artist = "";
+ album = "";
+@@ -164,7 +164,7 @@
+ totalInSet = 0;
+ }
+
+- void Metadata::readFromC(const metadata_t *mdata)
++ void readFromC(const metadata_t *mdata)
+ {
+ artist = mdata->artist;
+ sortName = mdata->sortName;
+@@ -190,7 +190,7 @@
+ totalInSet = mdata->totalInSet;
+ }
+
+- void Metadata::writeToC(metadata_t *mdata) const
++ void writeToC(metadata_t *mdata) const
+ {
+ memset(mdata, 0, sizeof(metadata_t));
+
+@@ -218,7 +218,7 @@
+ mdata->totalInSet = totalInSet;
+ }
+
+- void Metadata::print(void)
++ void print(void)
+ {
+ printf("artist: '%s'\n", artist.c_str());
+ printf("sortName: '%s'\n", sortName.c_str());
================================================================
More information about the pld-cvs-commit
mailing list