From: <cod...@go...> - 2009-03-21 15:29:20
|
Author: M0...@gm... Date: Sat Mar 21 08:27:24 2009 New Revision: 520 Modified: branches/speedy/.lang/.pot branches/speedy/.lang/Step6.pot branches/speedy/MdlBootMngr.module branches/speedy/Step6.class Log: Fixed bug in swap partition selection Modified: branches/speedy/.lang/.pot ============================================================================== --- branches/speedy/.lang/.pot (original) +++ branches/speedy/.lang/.pot Sat Mar 21 08:27:24 2009 @@ -582,11 +582,11 @@ msgid "This step cannot be undone. Are you sure you want to continue?" msgstr "" -#: Step3a1a.class:186 Step6.class:507 Step7a.class:143 +#: Step3a1a.class:186 Step6.class:510 Step7a.class:143 msgid "Yes" msgstr "" -#: Step3a1a.class:186 Step6.class:507 Step7a.class:143 +#: Step3a1a.class:186 Step6.class:510 Step7a.class:143 msgid "No" msgstr "" @@ -879,7 +879,7 @@ msgid "Please select only one partition for this purpose" msgstr "" -#: Step6.class:402 +#: Step6.class:405 msgid "Select which partitions to use for installation" msgstr "" Modified: branches/speedy/.lang/Step6.pot ============================================================================== --- branches/speedy/.lang/Step6.pot (original) +++ branches/speedy/.lang/Step6.pot Sat Mar 21 08:27:24 2009 @@ -58,15 +58,15 @@ msgid "Please select only one partition for this purpose" msgstr "" -#: Step6.class:402 +#: Step6.class:405 msgid "Select which partitions to use for installation" msgstr "" -#: Step6.class:507 +#: Step6.class:510 msgid "Yes" msgstr "" -#: Step6.class:507 +#: Step6.class:510 msgid "No" msgstr "" Modified: branches/speedy/MdlBootMngr.module ============================================================================== --- branches/speedy/MdlBootMngr.module (original) +++ branches/speedy/MdlBootMngr.module Sat Mar 21 08:27:24 2009 @@ -110,7 +110,7 @@ IF Len(sOutcome) <= 0 THEN CONTINUE ' will only list the linux if one is present populate_linux_entry(Trim(sPartList[i]), objTabStrip) - END IF + NEXT Modified: branches/speedy/Step6.class ============================================================================== --- branches/speedy/Step6.class (original) +++ branches/speedy/Step6.class Sat Mar 21 08:27:24 2009 @@ -251,12 +251,15 @@ y = LAST.y - IF LAST.text = ("Swap") THEN RETURN + 'IF LAST.text = ("Swap") THEN RETURN IF LAST.text <> ("Not Used") THEN - IF ME.CheckEntry(LAST.text, gvPartListing.RowAt(LAST.y)) > 0 THEN + IF LAST.text <> ("Swap") THEN + IF ME.CheckEntry(LAST.text, gvPartListing.RowAt(LAST.y)) > 0 THEN + 'END IF LAST.text = ("Not Used") STOP EVENT RETURN + END IF END IF END IF |