Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/system/settings.h b/src/system/settings.h
- index 59a6205..dc87c04 100644
- --- a/src/system/settings.h
- +++ b/src/system/settings.h
- @@ -163,12 +163,20 @@ struct SNeutrinoTheme
- struct timer_remotebox_item
- {
- - unsigned int port;
- - std::string user;
- - std::string pass;
- - std::string rbname;
- - std::string rbaddress;
- - bool online;
- + unsigned int port;
- + std::string user;
- + std::string pass;
- + std::string rbname;
- + std::string rbaddress;
- + bool online;
- +
- + timer_remotebox_item():
- + port(80),
- + user(""),
- + pass(""),
- + rbname(""),
- + rbaddress(""),
- + online(false) {}
- };
- struct SNeutrinoSettings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement