Rename Layer::destroy_all_cels() to destroyAllCels().

This commit is contained in:
David Capello 2011-03-24 13:15:09 -03:00
parent 5ff24c794c
commit bf3232c640
2 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ LayerImage::LayerImage(Sprite* sprite)
LayerImage::~LayerImage()
{
destroy_all_cels();
destroyAllCels();
}
int LayerImage::getMemSize() const
@ -122,7 +122,7 @@ int LayerImage::getMemSize() const
return size;
}
void LayerImage::destroy_all_cels()
void LayerImage::destroyAllCels()
{
CelIterator it = getCelBegin();
CelIterator end = getCelEnd();

View File

@ -114,7 +114,7 @@ public:
int getCelsCount() const { return m_cels.size(); }
private:
void destroy_all_cels();
void destroyAllCels();
CelList m_cels; // List of all cels inside this layer used by frames.
};