SVN commit 1016318 by dfaure: Backport: fix crash when doing "Close all tabs". #183486. M +5 -0 konqframe.cpp M +1 -1 konqframe.h --- branches/KDE/4.3/kdebase/apps/konqueror/src/konqframe.cpp #1016317:1016318 @@ -47,6 +47,11 @@ #include #include +KonqFrameBase::KonqFrameBase() + : m_pParentContainer(0) +{ +} + QString KonqFrameBase::frameTypeToString( const KonqFrameBase::FrameType frameType ) { switch ( frameType ) { --- branches/KDE/4.3/kdebase/apps/konqueror/src/konqframe.h #1016317:1016318 @@ -97,7 +97,7 @@ static FrameType frameTypeFromString( const QString& str ); protected: - KonqFrameBase() {} + KonqFrameBase(); KonqFrameContainerBase* m_pParentContainer; };