diff --git a/ChangeLog b/ChangeLog index c8947cb58..d131eaf5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-07-01 Tobias Doerffel + + * include/mv_base.h: + Qt 4.3 compatibility + 2008-06-30 Tobias Doerffel * configure.in: diff --git a/include/mv_base.h b/include/mv_base.h index 320004767..4e9135b78 100644 --- a/include/mv_base.h +++ b/include/mv_base.h @@ -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