From 2806f8669994277221bd2bc0026d1ed3ce47433e Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Sun, 1 Jul 2012 12:30:14 -0500 Subject: [PATCH] do it right this time. --- src/Song.cpp | 2 +- src/Song.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Song.cpp b/src/Song.cpp index 75558a5337..758ad17cf8 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -1049,7 +1049,7 @@ bool Song::SaveToSSCFile( RString sPath, bool bSavingCache ) return true; } -bool Song::SaveToJsonFile( RString sPath) +bool Song::SaveToJsonFile( RString sPath ) { LOG->Trace( "Song::SaveToJsonFile('%s')", sPath.c_str() ); return NotesWriterJson::WriteSong(sPath, *this, true); diff --git a/src/Song.h b/src/Song.h index 1ed35cb13d..ef32eec02f 100644 --- a/src/Song.h +++ b/src/Song.h @@ -119,7 +119,7 @@ public: /** * @brief Save the current Song to a JSON file. * @return its success or failure. */ - bool SaveToJsonFile(); + bool SaveToJsonFile( RString sPath ); /** * @brief Save the current Song to a cache file using the preferred format. * @return its success or failure. */