Qt 4.3 compatibility

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1260 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-07-01 09:27:49 +00:00
parent b02eb0b48a
commit fc86f3d7c7
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2008-07-01 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* include/mv_base.h:
Qt 4.3 compatibility
2008-06-30 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* configure.in:

View File

@@ -98,12 +98,12 @@ public:
inline model * getModel( void )
{
return( m_model.data() );
return( m_model );
}
inline const model * getModel( void ) const
{
return( m_model.data() );
return( m_model );
}
template<class T>