From 8e9bb12f92801d8b539013d02842ffed9e08cb84 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Jun 2015 08:32:10 -0400 Subject: [PATCH] no-op: fix whitespace/indentation --- libs/ardour/session_state.cc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index 63deb5453d..2bf04d9ab2 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -142,18 +142,18 @@ Session::pre_engine_init (string fullpath) _path = canonical_path(fullpath); /* is it new ? */ - if (Profile->get_trx() ) { - // Waves TracksLive has a usecase of session replacement with a new one. - // We should check session state file (.ardour) existance - // to determine if the session is new or not - string full_session_name = Glib::build_filename( fullpath, _name ); - full_session_name += statefile_suffix; - - _is_new = !Glib::file_test (full_session_name, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)); - } else { - _is_new = !Glib::file_test (_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)); - } - + if (Profile->get_trx() ) { + // Waves TracksLive has a usecase of session replacement with a new one. + // We should check session state file (.ardour) existance + // to determine if the session is new or not + + string full_session_name = Glib::build_filename( fullpath, _name ); + full_session_name += statefile_suffix; + + _is_new = !Glib::file_test (full_session_name, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)); + } else { + _is_new = !Glib::file_test (_path, Glib::FileTest (G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)); + } /* finish initialization that can't be done in a normal C++ constructor definition.