View | Details | Raw Unified | Return to issue 16718
Collapse All | Expand All

(-)inc/list.hxx (-19 / +33 lines)
Lines 83-96 Link Here
83
			Container::Insert;
83
			using Container::Insert;
84
			Container::Remove;
84
			using Container::Replace;
85
			Container::Replace;
85
			using Container::Clear;
86
			Container::Clear;
86
			using Container::GetCurObject;
87
			Container::Count;
87
			using Container::GetCurPos;
88
			Container::GetCurObject;
88
			using Container::GetObject;
89
			Container::GetCurPos;
89
			using Container::GetPos;
90
			Container::GetObject;
90
			using Container::Seek;
91
			Container::GetPos;
91
			using Container::First;
92
			Container::Seek;
92
			using Container::Last;
93
			Container::First;
93
			using Container::Next;
94
			Container::Last;
94
			using Container::Prev;
95
			Container::Next;
95
			using Container::Remove;
96
			Container::Prev;
96
97
--
97
            // make Container::Count available in derivees
98
            inline void * Remove( ULONG i )
99
100
            {
101
               return Container::Remove( i );
102
            }
103
104
            // make Container::Count available in derivees
105
            inline const ULONG Count( void )
106
            {
107
               return Container::Count( );
108
            }
109
Lines 121-123 Link Here
121
				List::Clear;											\
134
				using List::Clear;										\
122
				List::Count;											\
135
				using List::GetCurPos;									\
123
				List::GetCurPos;						\
136
                inline const ULONG Count()								\
124
--
137
                {														\
138
                   return List::Count( );								\
139
				}														\
(-)source/inet/inetmime.cxx (-2 / +1 lines)
Line 4529 Link Here
4529
		delete static_cast< INetContentTypeParameter * >(Remove(Count() - 1));
4529
		delete static_cast< INetContentTypeParameter * >(this->Remove(Count() - 1));
4530
--

Return to issue 16718