From 61be27890c597a5d475705a9bc3558727da45a1b Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Wed, 23 Mar 2016 00:26:16 +0200 Subject: [PATCH] Forgot to inlcude the INI entries in the previous commit. --- modules/ini/Entries.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ini/Entries.cpp b/modules/ini/Entries.cpp index 84fa654e..ec5ecf55 100644 --- a/modules/ini/Entries.cpp +++ b/modules/ini/Entries.cpp @@ -65,7 +65,7 @@ CSStr Entries::GetItem() const { // is the current element valid? if (m_List.empty() || m_Elem == m_List.end()) - SqThrowF("Invalid INI entry [item]"); + STHROWF("Invalid INI entry [item]"); // Return the requested information return m_Elem->pItem; } @@ -75,7 +75,7 @@ CSStr Entries::GetComment() const { // is the current element valid? if (m_List.empty() || m_Elem == m_List.end()) - SqThrowF("Invalid INI entry [comment]"); + STHROWF("Invalid INI entry [comment]"); // Return the requested information return m_Elem->pComment; } @@ -85,7 +85,7 @@ Int32 Entries::GetOrder() const { // is the current element valid? if (m_List.empty() || m_Elem == m_List.end()) - SqThrowF("Invalid INI entry [order]"); + STHROWF("Invalid INI entry [order]"); // Return the requested information return m_Elem->nOrder; }