Changeset 15079


Ignore:
Timestamp:
03/15/13 13:41:07 (12 years ago)
Author:
tbretz
Message:
It is not necessary anymore to send a fake empty strng in Comment or Alarm.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/RemoteControl.h

    r15042 r15079  
    168168    void  JsOut(const std::string &msg)       { lin << msg << endl; }
    169169    void  JsResult(const std::string &msg)    { lin << kBlue << " = " << msg << '\n' << endl; }
    170     void  JsPrint(const std::string &msg)     { if (fImp) fImp->Comment(msg.empty()?" ":msg); }
    171     void  JsAlarm(const std::string &msg)     { if (fImp) fImp->Alarm(msg.empty()?" ":msg); }
     170    void  JsPrint(const std::string &msg)     { if (fImp) fImp->Comment(msg); }
     171    void  JsAlarm(const std::string &msg)     { if (fImp) fImp->Alarm(msg); }
    172172    void  JsException(const std::string &str) { if (fImp) fImp->Error(str.empty()?"|":("| "+str)); }
    173173    bool  JsHasState(int s) const             { return fImp && fImp->HasState(s); }
Note: See TracChangeset for help on using the changeset viewer.