From: <cod...@go...> - 2008-10-02 14:59:33
|
Author: M0...@gm... Date: Thu Oct 2 07:57:58 2008 New Revision: 204 Modified: branches/iVL/.lang/#project.pot branches/iVL/.lang/FMain.pot branches/iVL/.lang/FrmPartScheme.pot branches/iVL/.lang/FrmPkgSel.pot branches/iVL/.lang/MdlPartSel.pot branches/iVL/.project branches/iVL/FrmNetConf.class branches/iVL/FrmRootPass.class branches/iVL/MdlNetConf.module Log: Changed instances of gb.space() to space() Modified: branches/iVL/.lang/#project.pot ============================================================================== --- branches/iVL/.lang/#project.pot (original) +++ branches/iVL/.lang/#project.pot Thu Oct 2 07:57:58 2008 @@ -1,4 +1,4 @@ -# /home/remote/area-51/projects/installer/.project +# /home/moe/projects/installer/.project # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FMain.pot ============================================================================== --- branches/iVL/.lang/FMain.pot (original) +++ branches/iVL/.lang/FMain.pot Thu Oct 2 07:57:58 2008 @@ -1,4 +1,4 @@ -# /home/rbistolfi/installer/FMain.class +# /home/moe/projects/installer/FMain.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FrmPartScheme.pot ============================================================================== --- branches/iVL/.lang/FrmPartScheme.pot (original) +++ branches/iVL/.lang/FrmPartScheme.pot Thu Oct 2 07:57:58 2008 @@ -1,4 +1,4 @@ -# /home/rbistolfi/installer/FrmPartScheme.class +# /home/moe/projects/installer/FrmPartScheme.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FrmPkgSel.pot ============================================================================== --- branches/iVL/.lang/FrmPkgSel.pot (original) +++ branches/iVL/.lang/FrmPkgSel.pot Thu Oct 2 07:57:58 2008 @@ -1,4 +1,4 @@ -# /home/rbistolfi/installer/FrmPkgSel.class +# /home/moe/projects/installer/FrmPkgSel.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/MdlPartSel.pot ============================================================================== --- branches/iVL/.lang/MdlPartSel.pot (original) +++ branches/iVL/.lang/MdlPartSel.pot Thu Oct 2 07:57:58 2008 @@ -1,4 +1,4 @@ -# /home/rbistolfi/installer/MdlPartSel.module +# /home/moe/projects/installer/MdlPartSel.module # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.project ============================================================================== --- branches/iVL/.project (original) +++ branches/iVL/.project Thu Oct 2 07:57:58 2008 @@ -1,7 +1,7 @@ # Gambas Project File 2.0 # Compiled with Gambas 2.9.0 Title=VectorLinux Installer -Startup=MdlCore +Startup=FrmRootPass Version=0.0.99 Library=gb.gtk Library=gb.form Modified: branches/iVL/FrmNetConf.class ============================================================================== --- branches/iVL/FrmNetConf.class (original) +++ branches/iVL/FrmNetConf.class Thu Oct 2 07:57:58 2008 @@ -53,7 +53,7 @@ FOR EACH cb IN MdlNetConf.objCombos cb.Refresh NEXT - ME.frmNetDevices.Text = gb.Space(1) & ("Network Interfaces") & Space(1) + ME.frmNetDevices.Text = Space(1) & ("Network Interfaces") & Space(1) END Modified: branches/iVL/FrmRootPass.class ============================================================================== --- branches/iVL/FrmRootPass.class (original) +++ branches/iVL/FrmRootPass.class Thu Oct 2 07:57:58 2008 @@ -21,11 +21,11 @@ END WITH WITH FMain - .tvPlan["Conf1"].Picture = MdlCore.sDonePic - .tvPlan["Conf2"].picture = MdlCore.sNowPic - .tvPlan["Conf2"].Selected = TRUE + ' .tvPlan["Conf1"].Picture = MdlCore.sDonePic + ' .tvPlan["Conf2"].picture = MdlCore.sNowPic + ' .tvPlan["Conf2"].Selected = TRUE END WITH - ME.Frame1.text = gb.Space(1) & ("About the root account") & gb.space(1) + ME.Frame1.text = Space(1) & ("About the root account") & Space(1) END Modified: branches/iVL/MdlNetConf.module ============================================================================== --- branches/iVL/MdlNetConf.module (original) +++ branches/iVL/MdlNetConf.module Thu Oct 2 07:57:58 2008 @@ -337,7 +337,7 @@ frmDetails = NEW Frame(FrmNetConf.TSNetDevices) AS "STaticDetails" WITH frmDetails .Move(ileft, itop + 8) - .text = gb.Space(1) & ("Static IP Address Settings") & gb.Space(1) + .text = Space(1) & ("Static IP Address Settings") & Space(1) FOR EACH txtbox IN objIntTypes IF txtbox.tag = LAST.tag THEN IF txtbox.text = ("Wired") THEN |