From ab2b94d44c0364f5f6d9874ddfdb741da5e9ad8a Mon Sep 17 00:00:00 2001 From: "kvisco%ziplink.net" Date: Fri, 7 Apr 2000 08:58:55 +0000 Subject: [PATCH] Added scoping back in git-svn-id: svn://10.0.0.236/trunk@65488 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/transformiix/source/base/List.h | 6 +++--- .../extensions/transformiix/source/base/StringList.h | 10 +++++++--- 2 files changed, 10 insertions(+), 6 deletions(-) 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 + + + +