summaryrefslogtreecommitdiffhomepage
path: root/migration/migration.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'migration/migration.cpp')
-rw-r--r--migration/migration.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/migration/migration.cpp b/migration/migration.cpp
index 59ceee1a..d4ec6493 100644
--- a/migration/migration.cpp
+++ b/migration/migration.cpp
@@ -172,7 +172,7 @@ std::vector<QString> migrator::run()
done.push_back(m->name());
}
}
- mark_config_as_not_needing_migration();
+ mark_profile_as_not_needing_migration();
});
return done;
@@ -192,14 +192,14 @@ std::vector<QString> run_migrations()
return migrations::detail::migrator::run();
}
-void mark_config_as_not_needing_migration()
+void mark_profile_as_not_needing_migration()
{
using m = migrations::detail::migrator;
- m::mark_config_as_not_needing_migration();
+ m::mark_profile_as_not_needing_migration();
}
-void migrations::detail::migrator::mark_config_as_not_needing_migration()
+void migrations::detail::migrator::mark_profile_as_not_needing_migration()
{
set_last_migration_time(time_after_migrations());
}