Change isJournallingStackEmpty to isJournallingStateStackEmpty

This commit is contained in:
Matthew Krafczyk
2014-09-09 20:08:14 +02:00
parent 0cdfd7c354
commit e20e863a99

View File

@@ -50,7 +50,7 @@ public:
void restoreJournallingState()
{
if( !isJournallingStackEmpty())
if( !isJournallingStateStackEmpty())
{
m_journalling = m_journallingStateStack.pop();
}
@@ -80,7 +80,7 @@ public:
return oldJournalling;
}
inline bool isJournallingStackEmpty() const
bool isJournallingStateStackEmpty() const
{
return m_journallingStateStack.isEmpty();
}