diff options
author | Merov Linden <merov@lindenlab.com> | 2014-01-13 17:56:38 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-01-13 17:56:38 -0800 |
commit | d972efa64c5877c611f9ca583483978dca3c6768 (patch) | |
tree | 332c996ac9aa4d66bf94a14f4fe05eb6e7ec451c /indra/newview/llsnapshotlivepreview.h | |
parent | 54ad7de61b5be2014c2e061a4964b7d6620a5dd4 (diff) |
ACME-1244 : WIP : Execute filters in Flickr panel. Testable but code beeds clean up.
Diffstat (limited to 'indra/newview/llsnapshotlivepreview.h')
-rw-r--r-- | indra/newview/llsnapshotlivepreview.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llsnapshotlivepreview.h b/indra/newview/llsnapshotlivepreview.h index d5ae3b491b..6addc87de2 100644 --- a/indra/newview/llsnapshotlivepreview.h +++ b/indra/newview/llsnapshotlivepreview.h @@ -95,8 +95,8 @@ public: void setSnapshotFormat(LLFloaterSnapshot::ESnapshotFormat type) { mSnapshotFormat = type; } bool setSnapshotQuality(S32 quality, bool set_by_user = true); void setSnapshotBufferType(LLViewerWindow::ESnapshotType type) { mSnapshotBufferType = type; } - void setFilter(S32 filter) { mFilterType = filter; } - S32 getFilter() { return mFilterType; } + void setFilter(std::string filter_name) { mFilterName = filter_name; } + std::string getFilter() { return mFilterName; } void updateSnapshot(BOOL new_snapshot, BOOL new_thumbnail = FALSE, F32 delay = 0.f); void saveWeb(); void saveTexture(); @@ -156,7 +156,7 @@ private: LLQuaternion mCameraRot; BOOL mSnapshotActive; LLViewerWindow::ESnapshotType mSnapshotBufferType; - S32 mFilterType; // *TODO: eventually use a string and a named filter + std::string mFilterName; public: static std::set<LLSnapshotLivePreview*> sList; |