a/src/ohradio.hxx b/src/ohradio.hxx
...
...
73
    int setPlaying();
73
    int setPlaying();
74
    bool makeIdArray(std::string&);
74
    bool makeIdArray(std::string&);
75
    void maybeWakeUp(bool ok);
75
    void maybeWakeUp(bool ok);
76
    void maybeExecMetaScript(RadioMeta& radio, MpdStatus &);
76
    void maybeExecMetaScript(RadioMeta& radio, MpdStatus &);
77
77
78
    bool m_active;
78
    bool m_active{false};
79
    // Play requested, but waiting for the metascript to return an uri.
80
    bool m_playpending{false};
79
    MpdState m_mpdsavedstate;
81
    MpdState m_mpdsavedstate;
80
    // Current channel id set by setId
82
    // Current channel id set by setId
81
    unsigned int m_id; 
83
    unsigned int m_id{0}; 
82
    // Current track data (title+artist_. Used for detecting changes,
84
    // Current track data (title+artist_. Used for detecting changes,
83
    // only for executing possible configured art uri fetch script
85
    // only for executing possible configured art uri fetch script
84
    std::string m_currentsong;
86
    std::string m_currentsong;
85
    bool m_ok;
87
    bool m_ok{false};
86
};
88
};
87
89
88
#endif /* _OHRADIO_H_X_INCLUDED_ */
90
#endif /* _OHRADIO_H_X_INCLUDED_ */