Usunięcie pozostałych jeszcze słów kluczowych __fastcall.

This commit is contained in:
firleju
2016-04-06 06:58:29 +02:00
parent 52cf14d83a
commit 25bdd9d536
32 changed files with 147 additions and 147 deletions

View File

@@ -69,13 +69,13 @@ void ItemRecord::ListGet(ItemRecord *r, int *&n)
rNext->ListGet(r, n); // dodanie wszystkich późniejszych
};
void *__fastcall ItemRecord::TreeFind(const char *n)
void * ItemRecord::TreeFind(const char *n)
{ // wyszukanie ciągu (n)
ItemRecord *r = TreeFindRecord(n);
return r ? r->pData : NULL;
};
ItemRecord *__fastcall ItemRecord::TreeFindRecord(const char *n)
ItemRecord * ItemRecord::TreeFindRecord(const char *n)
{ // wyszukanie ciągu (n)
ItemRecord *r = this; //żeby nie robić rekurencji
int i = 0;
@@ -147,7 +147,7 @@ bool TNames::Update(int t, const char *n, void *d)
return false; // został dodany nowy
};
ItemRecord *__fastcall TNames::TreeSet(int *n, int d, int u)
ItemRecord * TNames::TreeSet(int *n, int d, int u)
{ // rekurencyjne wypełnianie drzewa pozycjami od (d) do (u)
if (d == u)
{
@@ -177,7 +177,7 @@ void TNames::Sort(int t)
return;
};
ItemRecord *__fastcall TNames::FindRecord(const int t, const char *n)
ItemRecord * TNames::FindRecord(const int t, const char *n)
{ // poszukiwanie rekordu w celu np. zmiany wskaźnika
return rTypes[t] ? rTypes[t]->TreeFindRecord(n) : NULL;
};