diff options
author | Paul ProductEngine <pguslisty@productengine.com> | 2011-06-30 15:38:58 +0300 |
---|---|---|
committer | Paul ProductEngine <pguslisty@productengine.com> | 2011-06-30 15:38:58 +0300 |
commit | c7bbe8e63149af214175bffcf4d3710654584c1d (patch) | |
tree | 69fe4ba549dd7ed2e3548731ec6cb68a8a997017 /indra/newview/llfloatermodeluploadbase.h | |
parent | 6baafbd549d7a0bddacb5a30b7d9336c5afbcbaf (diff) |
SH-1726 ADDITIONAL FIX (Viewer modifications to advanced model upload to accomodate upload fee & prim equivilancy)
- Added a signal on model change to initiate recalculating (calculate phys&fee button is shown again)
- Show 'calculate phys&fee' button on fee request error
Diffstat (limited to 'indra/newview/llfloatermodeluploadbase.h')
-rw-r--r-- | indra/newview/llfloatermodeluploadbase.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/indra/newview/llfloatermodeluploadbase.h b/indra/newview/llfloatermodeluploadbase.h index a4e300563d..bb5e710273 100644 --- a/indra/newview/llfloatermodeluploadbase.h +++ b/indra/newview/llfloatermodeluploadbase.h @@ -24,8 +24,8 @@ * $/LicenseInfo$ */ -#ifndef LLFLOATERMODELUPLOADBASE_H_ -#define LLFLOATERMODELUPLOADBASE_H_ +#ifndef LL_LLFLOATERMODELUPLOADBASE_H +#define LL_LLFLOATERMODELUPLOADBASE_H #include "lluploadfloaterobservers.h" @@ -37,13 +37,13 @@ public: virtual ~LLFloaterModelUploadBase(){}; - virtual void setPermissonsErrorStatus(U32 status, const std::string& reason){}; + virtual void setPermissonsErrorStatus(U32 status, const std::string& reason) = 0; - virtual void onPermissionsReceived(const LLSD& result){}; + virtual void onPermissionsReceived(const LLSD& result) = 0; - virtual void onModelPhysicsFeeReceived(F64 physics, S32 fee, std::string upload_url){}; + virtual void onModelPhysicsFeeReceived(F64 physics, S32 fee, std::string upload_url) = 0; - virtual void setModelPhysicsFeeErrorStatus(U32 status, const std::string& reason){}; + virtual void setModelPhysicsFeeErrorStatus(U32 status, const std::string& reason) = 0; protected: @@ -54,4 +54,4 @@ protected: bool mHasUploadPerm; }; -#endif /* LLFLOATERMODELUPLOADBASE_H_ */ +#endif /* LL_LLFLOATERMODELUPLOADBASE_H */ |