diff options
author | Leslie Linden <leslie@lindenlab.com> | 2012-01-05 10:57:09 -0800 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2012-01-05 10:57:09 -0800 |
commit | 263fd1345875eb0389e2ed0a8cbeb4e458a2d007 (patch) | |
tree | 95cf0a9b954a6f29d73451b14fb3a15ca2f31d5a /indra/newview/llpanelmarketplaceoutboxinventory.h | |
parent | 12819b6637aceb3a447742e255ec9f35ccde03d6 (diff) |
Removed unused code for old outbox error reporting
Diffstat (limited to 'indra/newview/llpanelmarketplaceoutboxinventory.h')
-rw-r--r-- | indra/newview/llpanelmarketplaceoutboxinventory.h | 26 |
1 files changed, 3 insertions, 23 deletions
diff --git a/indra/newview/llpanelmarketplaceoutboxinventory.h b/indra/newview/llpanelmarketplaceoutboxinventory.h index 346680a79d..167f371f0e 100644 --- a/indra/newview/llpanelmarketplaceoutboxinventory.h +++ b/indra/newview/llpanelmarketplaceoutboxinventory.h @@ -28,7 +28,6 @@ #define LL_OUTBOXINVENTORYPANEL_H -#include "llbadgeowner.h" #include "llinventorypanel.h" #include "llfolderviewitem.h" @@ -53,41 +52,22 @@ public: }; -class LLOutboxFolderViewFolder : public LLFolderViewFolder, public LLBadgeOwner +class LLOutboxFolderViewFolder : public LLFolderViewFolder { public: struct Params : public LLInitParam::Block<Params, LLFolderViewFolder::Params> { - Optional<LLBadge::Params> error_badge; - - Params() - : error_badge("error_badge") - { - } + Params() {} }; LLOutboxFolderViewFolder(const Params& p); - ~LLOutboxFolderViewFolder(); - - void draw(); - - void setErrorString(const std::string& errorString); - void setError(S32 errorCode); - - bool hasError() const { return (mError != 0); } - -protected: - S32 mError; }; class LLOutboxFolderViewItem : public LLFolderViewItem { public: - LLOutboxFolderViewItem(const Params& p) - : LLFolderViewItem(p) - { - } + LLOutboxFolderViewItem(const Params& p); // virtual BOOL handleDoubleClick(S32 x, S32 y, MASK mask); |