From: Peter Penz Date: Wed, 9 Jul 2008 05:01:51 +0000 (+0000) Subject: prevent crash when "Use common view properties for all folders" is set (uninitialized... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/6eb70b3fa4dd885771168c754c6e6cc67ee7054b?ds=inline prevent crash when "Use common view properties for all folders" is set (uninitialized member variable) BUG: 166102 svn path=/trunk/KDE/kdebase/apps/; revision=829777 --- diff --git a/src/viewpropertiesdialog.cpp b/src/viewpropertiesdialog.cpp index db543808b..5d3f299d9 100644 --- a/src/viewpropertiesdialog.cpp +++ b/src/viewpropertiesdialog.cpp @@ -68,6 +68,7 @@ ViewPropertiesDialog::ViewPropertiesDialog(DolphinView* dolphinView) : m_additionalInfo(0), m_applyToCurrentFolder(0), m_applyToSubFolders(0), + m_applyToAllFolders(0), m_useAsDefault(0) { Q_ASSERT(dolphinView != 0);