Advertisement
svenhoefer

Untitled

Mar 3rd, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.83 KB | None | 0 0
  1. diff --git a/src/system/settings.h b/src/system/settings.h
  2. index 59a6205..dc87c04 100644
  3. --- a/src/system/settings.h
  4. +++ b/src/system/settings.h
  5. @@ -163,12 +163,20 @@ struct SNeutrinoTheme
  6.  
  7.  struct timer_remotebox_item
  8.  {
  9. -               unsigned int port;
  10. -               std::string user;
  11. -               std::string pass;
  12. -               std::string rbname;
  13. -               std::string rbaddress;
  14. -               bool online;
  15. +       unsigned int port;
  16. +       std::string user;
  17. +       std::string pass;
  18. +       std::string rbname;
  19. +       std::string rbaddress;
  20. +       bool online;
  21. +
  22. +       timer_remotebox_item():
  23. +               port(80),
  24. +               user(""),
  25. +               pass(""),
  26. +               rbname(""),
  27. +               rbaddress(""),
  28. +               online(false) {}
  29.  };
  30.  
  31.  struct SNeutrinoSettings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement