diff options
-rw-r--r-- | desktop/source/app/app.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index a4ce4c965d3a..624b5cb0b6b4 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -713,6 +713,8 @@ OUString Desktop::CreateErrorMsgString( /// the bootstrap INI file could not be found or read case ::utl::Bootstrap::MISSING_BOOTSTRAP_FILE: + /// the version locator INI file could not be found or read + case ::utl::Bootstrap::MISSING_VERSION_FILE: { aMsg = DpResId(STR_BOOTSTRAP_ERR_FILE_MISSING); } @@ -727,13 +729,6 @@ OUString Desktop::CreateErrorMsgString( } break; - /// the version locator INI file could not be found or read - case ::utl::Bootstrap::MISSING_VERSION_FILE: - { - aMsg = DpResId(STR_BOOTSTRAP_ERR_FILE_MISSING); - } - break; - /// the version locator INI has no entry for this version case ::utl::Bootstrap::MISSING_VERSION_FILE_ENTRY: { |