From 409c885d65ebf13e35b4d7575ef92fa4abe79207 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Thu, 17 Mar 2011 12:21:20 -0400 Subject: [PATCH] Fix compile...and I think fix the save problem. Not the best way to do this perhaps, but it's something. --- src/ScreenEdit.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 01185de96c..4f81d934df 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -2867,7 +2867,9 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM ) if( (*s)->IsAutogen() ) continue; // If the notedata has content, let it go. - if( !(*s)->m_NoteData->IsEmpty() ) + NoteData tmp; + (*s)->GetNoteData(tmp); + if( !tmp.IsEmpty() ) continue; // It's hard to say if these steps were saved to disk or not. /*