Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. === modified file 'include/MMS/theme-ng.hpp'
  2. --- include/MMS/theme-ng.hpp 2010-11-07 13:29:25 +0000
  3. +++ include/MMS/theme-ng.hpp 2010-11-12 19:09:10 +0000
  4. @@ -103,7 +103,7 @@
  5. ColourNG();
  6. ~ColourNG();
  7. bool ReadXml(TiXmlElement *_node);
  8. - bool WriteXml(TiXmlElement *_node) {}
  9. + bool WriteXml(TiXmlElement *_node) { return false;}
  10. void Debug(int _level);
  11.  
  12. const std::string Name() { return name; }
  13. @@ -121,7 +121,7 @@
  14. FontNG();
  15. ~FontNG();
  16. bool ReadXml(TiXmlElement *_node);
  17. - bool WriteXml(TiXmlElement *_node) {}
  18. + bool WriteXml(TiXmlElement *_node) { return false;}
  19. void Debug(int _level);
  20. const std::string& Name() { return name; }
  21. };
  22. @@ -138,7 +138,7 @@
  23. ImageNG(std::string _dir);
  24. ~ImageNG();
  25. bool ReadXml(TiXmlElement *_node);
  26. - bool WriteXml(TiXmlElement *_node) {}
  27. + bool WriteXml(TiXmlElement *_node) { return false;}
  28. void Debug(int _level);
  29. const std::string& Name(int _a);
  30. bool Scaled() { return scaled; }
  31. @@ -175,7 +175,7 @@
  32. ~ThemeNG();
  33. bool Read(std::string _filename);
  34. bool ReadXml(TiXmlElement *_node);
  35. - bool WriteXml(TiXmlElement *_node) {}
  36. + bool WriteXml(TiXmlElement *_node) {return false;}
  37.  
  38. ThemeNG *LoadModule(std::string module);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement