]> git.stg.codes - stg.git/commitdiff
Replace properties in IsInetable with explicit use of variables
authorMaxim Mamontov <faust@gts.dp.ua>
Thu, 21 Apr 2011 12:59:02 +0000 (15:59 +0300)
committerMaxim Mamontov <faust@gts.dp.ua>
Thu, 21 Apr 2011 12:59:02 +0000 (15:59 +0300)
projects/stargazer/user_impl.cpp

index d89bbe47a796bc9180371b840685a2bb82997e4e..00063437ec339bc4071c38f1a28f98219f4d1ddb 100644 (file)
@@ -674,21 +674,21 @@ bool USER_IMPL::IsInetable()
 {
 //STG_LOCKER lock(&mutex, __FILE__, __LINE__);
 
-if (disabled || passive)
+if (disabled.ConstData() || passive.ConstData())
     return false;
 
 if (settings->GetFreeMbAllowInet())
     {
-    if (freeMb >= 0)
+    if (freeMb.ConstData() >= 0)
         return true;
     }
 
 if (settings->GetShowFeeInCash())
     {
-    return (cash >= -credit);
+    return (cash.ConstData() >= -credit.ConstData());
     }
 
-return (cash - tariff->GetFee() >= -credit);
+return (cash.ConstData() - tariff->GetFee() >= -credit.ConstData());
 }
 //-----------------------------------------------------------------------------
 string USER_IMPL::GetEnabledDirs()