Added scoping back in

git-svn-id: svn://10.0.0.236/trunk@65488 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kvisco%ziplink.net
2000-04-07 08:58:55 +00:00
parent 1fa27063ab
commit ab2b94d44c
2 changed files with 10 additions and 6 deletions

View File

@@ -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 <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @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