From c300c20fea5d5a99b9fba11f4c4ff8281c3bfffd Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 18 Mar 2011 12:33:53 -0400 Subject: [PATCH] Effective fix. I'll understand when you can use new whatever in the initialization list some other time. --- src/Steps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Steps.cpp b/src/Steps.cpp index 3f28a72ed5..3c0cf7cb57 100644 --- a/src/Steps.cpp +++ b/src/Steps.cpp @@ -26,7 +26,7 @@ #include Steps::Steps(): m_StepsType(StepsType_Invalid), - parent(NULL), m_pNoteData(NULL),m_bNoteDataIsFilled(false), + parent(NULL), m_pNoteData(new NoteData), m_bNoteDataIsFilled(false), m_sNoteDataCompressed(""), m_sFilename(""), m_bSavedToDisk(false), m_LoadedFromProfile(ProfileSlot_Invalid), m_iHash(0), m_sDescription(""), m_sChartStyle(""),