pythonslotwindow.cpp aç
arat
void CSlotWindow::SetSlotCount(DWORD dwIndex, DWORD dwCount)
void CSlotWindow::SetSlotCount(DWORD dwIndex, DWORD dwCount)
{
TSlot * pSlot;
if (!GetSlotPointer(dwIndex, &pSlot))
return;
if (dwCount <= 0)
{
if (pSlot->pNumberLine)
{
delete pSlot->pNumberLine;
pSlot->pNumberLine = NULL;
}
}
else
{
std::string szCount;
DWORD index = 0;
DWORD modIndex = 1...