made 0.1.3 release

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@74 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-02-01 16:35:45 +00:00
parent f0cfa20676
commit 7df6381800
10 changed files with 66 additions and 12 deletions

View File

@@ -39,7 +39,7 @@
namespace base64
{
#ifndef QT3
inline encode( const char * _data, const int _size, QString & _dst )
inline void encode( const char * _data, const int _size, QString & _dst )
{
_dst = QByteArray( _data, _size ).toBase64();
}

View File

@@ -51,7 +51,11 @@ public:
, WFlags _f
#endif
) :
QWidget( _parent, NULL, _f ),
QWidget( _parent
#ifdef QT3
, NULL, _f
#endif
),
m_selected( FALSE )
{
}