]> git.stg.codes - stg.git/commitdiff
Ticket 37. c_str() function removed for the
authorElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 12:24:56 +0000 (15:24 +0300)
committerElena Mamontova <helenh463@gmail.com>
Mon, 8 Aug 2016 12:24:56 +0000 (15:24 +0300)
TARIFF::ChangePolicyToString() in the TariffChangeIsAllowed() function.

projects/stargazer/tariff_impl.cpp

index ad0eaedf66f37654d96b14a332a740289bd49291..61c158e8399185e1a154b334a43be9150fb15eb7 100644 (file)
@@ -155,12 +155,12 @@ switch (GetChangePolicy())
         if (to.GetFee() < GetFee())
             return "";
         else
-            return "Current tariff " + GetName() + " is more cheap than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()).c_str() + ".";
+            return "Current tariff " + GetName() + " is more cheap than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()) + ".";
     case TARIFF::TO_EXPENSIVE:
         if (to.GetFee() > GetFee())
             return "";
         else
-            return "Current tariff " + GetName() + " is more expensive than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()).c_str() + ".";
+            return "Current tariff " + GetName() + " is more expensive than new tariff " + to.GetName() + ". The policy is " + TARIFF::ChangePolicyToString(GetChangePolicy()) + ".";
     case TARIFF::DENY:
         return "Current tariff " + GetName() + ", new tariff " + to.GetName() + ".";
     }