>From d15d18dfa4db91416155385034bccf31be88ece3 Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Sat, 13 Jan 2018 18:50:14 -0500 Subject: [PATCH] Clarify the unsolved-problems warning If the user unchecks the 'Accept default solutions' box and selects 'Next', don't imply that choosing a non-default solution would break their system. --- prereq.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/prereq.cc b/prereq.cc index a03e79b..4926c65 100644 --- a/prereq.cc +++ b/prereq.cc @@ -96,10 +96,9 @@ PrereqPage::OnNext () { // breakage imminent! danger, danger int res = MessageBox (h, - "We strongly recommend that you accept the default solutions. " - "Some packages may not work properly if you don't." + "Some packages may not work properly if you continue." "\r\n\r\n" - "Are you sure you want to proceed?", + "Are you sure you want to proceed (NOT RECOMMENDED)?", "WARNING - Unsolved Problems", MB_YESNO | MB_ICONEXCLAMATION | MB_DEFBUTTON2); if (res == IDNO) @@ -107,7 +106,7 @@ PrereqPage::OnNext () else { Log (LOG_PLAIN) << - "NOTE! User refused the default solutions! " + "NOTE! User continued with unsolved problems! " "Expect some packages to give errors or not function at all." << endLog; // Change the solver's transaction list to reflect the user's choices. db.solution.db2trans(); -- 2.15.1