Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- Enumerator.h 2002-09-11 22:26:12.000000000 -0500
- +++ Enumerator.h 2014-01-14 10:48:43.169201905 -0600
- @@ -78,7 +78,7 @@
- template <class COLLECTION_TYPE> class Enumerator{
- public:
- Enumerator(){
- - m_supportsEditing = false;
- + this->m_supportsEditing = false;
- };
- virtual ~Enumerator(){};
- @@ -123,7 +123,7 @@
- *@return bool true if the enumerator allows editing, otherwise false.
- */
- bool supportsEditing(){
- - return m_supportsEditing;
- + return this->m_supportsEditing;
- };
- protected:
- bool m_supportsEditing;
- @@ -154,11 +154,11 @@
- EnumeratorContainer( COLLECTION &container ){
- m_container = &container;
- this->reset();
- - m_supportsEditing = true;
- + this->m_supportsEditing = true;
- };
- EnumeratorContainer(){
- - m_supportsEditing = true;
- + this->m_supportsEditing = true;
- };
- virtual ~EnumeratorContainer(){};
- --- xmake.cpp 2002-12-27 20:58:14.000000000 -0600
- +++ xmake.cpp 2014-01-14 10:49:26.893199570 -0600
- @@ -13,6 +13,7 @@
- #include <stdarg.h>
- #endif
- +#include <string.h>
- #include "xmake.h"
- #include "XMLParser.h"
- #include "CmdLine.h"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement