Advertisement
kirbyfan64sos

XMake patch

Jan 14th, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.11 KB | None | 0 0
  1. --- Enumerator.h    2002-09-11 22:26:12.000000000 -0500
  2. +++ Enumerator.h    2014-01-14 10:48:43.169201905 -0600
  3. @@ -78,7 +78,7 @@
  4.  template <class COLLECTION_TYPE> class  Enumerator{
  5.  public:
  6.     Enumerator(){
  7. -       m_supportsEditing = false;
  8. +       this->m_supportsEditing = false;
  9.     };
  10.  
  11.     virtual ~Enumerator(){};
  12. @@ -123,7 +123,7 @@
  13.     *@return bool true if the enumerator allows editing, otherwise false.
  14.     */
  15.     bool supportsEditing(){
  16. -       return m_supportsEditing;
  17. +       return this->m_supportsEditing;
  18.     };
  19.  protected:
  20.     bool m_supportsEditing;
  21. @@ -154,11 +154,11 @@
  22.     EnumeratorContainer( COLLECTION &container ){
  23.         m_container = &container;
  24.         this->reset();
  25. -       m_supportsEditing = true;
  26. +       this->m_supportsEditing = true;
  27.     };
  28.  
  29.     EnumeratorContainer(){
  30. -       m_supportsEditing = true;
  31. +       this->m_supportsEditing = true;
  32.     };
  33.  
  34.     virtual ~EnumeratorContainer(){};
  35. --- xmake.cpp   2002-12-27 20:58:14.000000000 -0600
  36. +++ xmake.cpp   2014-01-14 10:49:26.893199570 -0600
  37. @@ -13,6 +13,7 @@
  38.     #include <stdarg.h>
  39.  #endif
  40.  
  41. +#include <string.h>
  42.  #include "xmake.h"
  43.  #include "XMLParser.h"
  44.  #include "CmdLine.h"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement