Changeset df109f9 in nscp


Ignore:
Timestamp:
05/09/12 20:30:43 (13 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2
Children:
c630d09, 91f567f
Parents:
d6c3131
Message:

empty section fix to scheduler as well..

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • modules/Scheduler/schedules.hpp

    r8d89d7a rdf109f9  
    7575    } 
    7676    void set_command(std::wstring str) { 
    77       strEx::parse_command(str, command, arguments); 
     77      if (!str.empty()) { 
     78        strEx::parse_command(str, command, arguments); 
     79      } 
    7880    } 
    7981 
  • version.hpp

    rfa11893 rdf109f9  
    11#ifndef VERSION_HPP 
    22#define VERSION_HPP 
    3 #define PRODUCTVER     0,4,0,170 
    4 #define STRPRODUCTVER  "0,4,0,170" 
    5 #define STRPRODUCTDATE "2012-05-03" 
     3#define PRODUCTVER     0,4,0,172 
     4#define STRPRODUCTVER  "0,4,0,172" 
     5#define STRPRODUCTDATE "2012-05-08" 
    66#endif // VERSION_HPP 
  • version.txt

    rfa11893 rdf109f9  
    11version=0.4.0 
    2 build=170 
    3 date=2012-05-03 
     2build=172 
     3date=2012-05-08 
Note: See TracChangeset for help on using the changeset viewer.