~sebikul/mundus/mundus-git

« back to all changes in this revision

Viewing changes to .src/Reports/fReports.class

  • Committer: Sebi
  • Date: 2015-12-01 23:14:32 UTC
  • Revision ID: git-v1:bc907761723b955cad8a13c3c3cafd4cfe78dcb7
Tags: v3.0.1
Fixed path parsing and a spacing issue in the Backups form

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 
92
92
  sReport &= "\n\n"
93
93
  sReport &= Subst(("Total files cleaned: &1\n"), oReport["Totals"]["Files"])
94
 
  sReport &= Subst(("Total space cleaned: &1\n"), Main.SetSizeLabelScale(oReport["Totals"]["Space"]))
 
94
  sReport &= Subst(("Total space cleaned: &1\n"), PathHelper.ScaleSize(oReport["Totals"]["Space"]))
95
95
  sReport &= Subst(("Total executions:    &1\n"), oReport["Totals"]["Runs"])
96
96
 
97
97
  sReport &= "\n\n"
103
103
  For Each cModule In oReport["Modules"]
104
104
    sReport &= "==============================================\n"
105
105
    sReport &= Subst(("Module:  &1\n"), cModule["Module"])
106
 
    sReport &= Subst(("Space Cleaned:  &1\n"), Main.SetSizeLabelScale(cModule["Space"]))
 
106
    sReport &= Subst(("Space Cleaned:  &1\n"), PathHelper.ScaleSize(cModule["Space"]))
107
107
    sReport &= Subst(("Files Cleaned:  &1\n"), cModule["Files"])
108
108
    sReport &= Subst(("Times Executed: &1\n"), cModule["Runs"])
109
109
    sReport &= "==============================================\n"