~fillods/fldigi/trunk

« back to all changes in this revision

Viewing changes to src/misc/macros.cxx

  • Committer: David Freese
  • Date: 2014-01-31 18:55:10 UTC
  • Revision ID: git-v1:1bcc31c5db508cd23fe5d2ce9b8d35ecef8dab43
SKED macro

  * Corrected macro editor hints for <SKED:...
  * Time of execution is specified as HHMMSS
    where SS is optional and will be substituted as
    "00" if omitted from the macro text.  Time is
    is Zulu.
  * Date of exection is specified as YYYYMMDD
    where YYYY is year, MM month, and DD day.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2167
2167
                exec_time = data.substr(0, p);
2168
2168
                exec_date = data.substr(p+1);
2169
2169
        }
 
2170
        if (exec_time.length() == 4) exec_time.append("00");
2170
2171
        timed_exec = true;
2171
2172
        s.replace(i, endbracket - i + 1, "");
2172
2173
}