summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index f82962ef3d..df4922a4ae 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -950,9 +950,6 @@ Session::save_state (string snapshot_name, bool pending, bool switch_to_snapshot
remove_pending_capture_state ();
}
- /* remove unnamed file name, if any (it's not an error if it doesn't exist */
- ::g_unlink (unnamed_file_name().c_str());
-
return 0;
}
@@ -4535,6 +4532,9 @@ Session::rename (const std::string& new_name)
store_recent_sessions (new_name, _path);
+ /* remove unnamed file name, if any (it's not an error if it doesn't exist) */
+ ::g_unlink (unnamed_file_name().c_str());
+
return 0;
}
@@ -5657,7 +5657,7 @@ Session::unnamed_file_name() const
}
bool
-Session::not_named() const
+Session::unnamed() const
{
return Glib::file_test (unnamed_file_name(), Glib::FILE_TEST_EXISTS);
}