diff --git a/mozilla/extensions/transformiix/source/base/List.h b/mozilla/extensions/transformiix/source/base/List.h index 9f68253945e..c0cc8cb2c75 100644 --- a/mozilla/extensions/transformiix/source/base/List.h +++ b/mozilla/extensions/transformiix/source/base/List.h @@ -21,7 +21,7 @@ * Keith Visco, kvisco@ziplink.net * -- original author. * - * $Id: List.h,v 1.3 2000-04-06 22:35:28 Peter.VanderBeken%pandora.be Exp $ + * $Id: List.h,v 1.4 2000-04-07 08:58:54 kvisco%ziplink.net Exp $ */ #include "baseutils.h" @@ -32,7 +32,7 @@ /** * Represents an ordered list of Object pointers. Modeled after a Java 2 List. * @author Keith Visco - * @version $Revision: 1.3 $ $Date: 2000-04-06 22:35:28 $ + * @version $Revision: 1.4 $ $Date: 2000-04-07 08:58:54 $ **/ class List { @@ -178,7 +178,7 @@ private: int count; //-- points to the current list item - ListItem* currentItem; + List::ListItem* currentItem; //-- points to the list to iterator over List* list; diff --git a/mozilla/extensions/transformiix/source/base/StringList.h b/mozilla/extensions/transformiix/source/base/StringList.h index f323eda77d2..9dac148f750 100644 --- a/mozilla/extensions/transformiix/source/base/StringList.h +++ b/mozilla/extensions/transformiix/source/base/StringList.h @@ -23,13 +23,13 @@ * Bob Miller, kbob@oblix.com * -- plugged core leak. * - * $Id: StringList.h,v 1.6 2000-04-06 22:37:29 Peter.VanderBeken%pandora.be Exp $ + * $Id: StringList.h,v 1.7 2000-04-07 08:58:55 kvisco%ziplink.net Exp $ */ /** * A class for keeping an ordered list of Strings * @author Keith Visco - * @version $Revision: 1.6 $ $Date: 2000-04-06 22:37:29 $ + * @version $Revision: 1.7 $ $Date: 2000-04-07 08:58:55 $ **/ #include "String.h" @@ -130,7 +130,7 @@ public: private: - StringListItem* currentItem; + StringList::StringListItem* currentItem; StringList* stringList; MBool allowRemove; @@ -138,3 +138,7 @@ private: #endif + + + +