summaryrefslogtreecommitdiff
path: root/gtk2_ardour/startup.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/startup.cc')
-rw-r--r--gtk2_ardour/startup.cc14
1 files changed, 2 insertions, 12 deletions
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;