MCPcopy Create free account
hub / github.com/crossuo/crossuo / MoveToBack

Method MoveToBack

src/BaseQueue.cpp:176–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176void CBaseQueue::MoveToBack(CBaseQueueItem *item)
177{
178 if (item != nullptr)
179 {
180 Unlink(item);
181 CBaseQueueItem *last = Last();
182 if (last == nullptr)
183 {
184 m_Items = item;
185 }
186 else
187 {
188 last->m_Next = item;
189 }
190 item->m_Prev = last;
191 item->m_Next = nullptr;
192 }
193}
194
195bool CBaseQueue::Move(CBaseQueueItem *item, bool up)
196{

Callers 3

OnLeftMouseButtonDownMethod · 0.80
UpdateGroupMethod · 0.80
UpdateGroupMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected