From e20e863a99d9b2076041d93592986bfd268337c1 Mon Sep 17 00:00:00 2001 From: Matthew Krafczyk Date: Tue, 9 Sep 2014 20:08:14 +0200 Subject: [PATCH] Change isJournallingStackEmpty to isJournallingStateStackEmpty --- include/JournallingObject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/JournallingObject.h b/include/JournallingObject.h index 5b266daad..8a2627716 100644 --- a/include/JournallingObject.h +++ b/include/JournallingObject.h @@ -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(); }