1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-21 01:51:24 +02:00

initial import

This commit is contained in:
root
2010-02-09 21:25:29 +01:00
commit b2719dc011
1080 changed files with 41656 additions and 0 deletions
@@ -0,0 +1 @@
MD5 74355af8dde2e1e75378db8b10a42bfc xmms-fc-0.5.3.tar.bz2 139508
@@ -0,0 +1 @@
MD5 12439e6ad3f893b9e75d6a0d19d2367f xmms-fc-0.5.4.tar.bz2 222785
@@ -0,0 +1,36 @@
diff -Naur xmms-fc-0.5.3.vanilla/src/SmartPtr.h xmms-fc-0.5.3/src/SmartPtr.h
--- xmms-fc-0.5.3.vanilla/src/SmartPtr.h 1998-11-30 13:10:00.000000000 -0600
+++ xmms-fc-0.5.3/src/SmartPtr.h 2004-07-03 01:49:33.991970368 -0500
@@ -24,7 +24,7 @@
}
else
{
- pBufCurrent = ( bufBegin = ( bufEnd = 0 ));
+ T* pBufCurrent = ( bufBegin = ( bufEnd = 0 ));
bufLen = 0;
status = false;
}
@@ -207,16 +207,16 @@
{
if ( bufferLen >= 1 )
{
- pBufCurrent = ( bufBegin = buffer );
- bufEnd = bufBegin + bufferLen;
- bufLen = bufferLen;
- status = true;
+ this->pBufCurrent = ( this->bufBegin = buffer );
+ this->bufEnd = this->bufBegin + bufferLen;
+ this->bufLen = bufferLen;
+ this->status = true;
}
else
{
- pBufCurrent = bufBegin = bufEnd = 0;
- bufLen = 0;
- status = false;
+ this->pBufCurrent = this->bufBegin = this->bufEnd = 0;
+ this->bufLen = 0;
+ this->status = false;
}
}
};