]> git.pld-linux.org Git - packages/libtunepimp.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 12 Jan 2006 20:03:29 +0000 (20:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libtunepimp-gcc4.patch -> 1.2

libtunepimp-gcc4.patch [deleted file]

diff --git a/libtunepimp-gcc4.patch b/libtunepimp-gcc4.patch
deleted file mode 100644 (file)
index 559681a..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
---- 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());
This page took 0.088263 seconds and 4 git commands to generate.