X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=blobdiff_plain;f=gtk2_ardour%2Fstartup.cc;h=f332b698549a09b0f45272151b9d0d37aeed0321;hp=12f98916bf30188048617390943b32bebd83cf7f;hb=3a50975c3dae3759d9e7f4fdcf9a39ed4e3e69e7;hpb=5f5bdca15bb86d09800dfaa53b6a57addf35eb37 diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc index 12f98916bf..f332b69854 100644 --- a/gtk2_ardour/startup.cc +++ b/gtk2_ardour/startup.cc @@ -119,20 +119,10 @@ ArdourStartup::~ArdourStartup () bool ArdourStartup::required () { - /* look for a "been here before" file for this version or earlier - * versions - */ - const int current_version = atoi (PROGRAM_VERSION); - for (int v = current_version; v != 0; --v) { - if (Glib::file_test (ARDOUR::been_here_before_path (v), Glib::FILE_TEST_EXISTS)) { - if (v != current_version) { - /* older version exists, create the current one */ - PBD::ScopedFileDescriptor fout (g_open (been_here_before_path (current_version).c_str(), O_CREAT|O_TRUNC|O_RDWR, 0666)); - } - return false; - } + if (Glib::file_test (ARDOUR::been_here_before_path (), Glib::FILE_TEST_EXISTS)) { + return false; } return true;