~sebikul/mundus/mundus-git

« back to all changes in this revision

Viewing changes to .src/Module.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:
73
73
 
74
74
  For Each sFile In Me.Executable
75
75
 
76
 
    If Main.CheckProgram(sFile) Then
 
76
    If PathHelper.CheckProgram(sFile) Then
77
77
      $isInstalled = True
78
78
      Break
79
79
    Endif
95
95
 
96
96
  Dim sExecutable As String
97
97
 
98
 
  If Not Main.CheckProgram("pgrep") Or Not Me.Executable Then Return False
 
98
  If Not PathHelper.CheckProgram("pgrep") Or Not Me.Executable Then Return False
99
99
 
100
100
  For Each sExecutable In Me.Executable
101
101