summaryrefslogtreecommitdiff
path: root/indra/newview/lldirpicker.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lldirpicker.h')
-rw-r--r--indra/newview/lldirpicker.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/indra/newview/lldirpicker.h b/indra/newview/lldirpicker.h
index 0bfb3620c9..d133a947e1 100644
--- a/indra/newview/lldirpicker.h
+++ b/indra/newview/lldirpicker.h
@@ -64,8 +64,8 @@ public:
// calling this before main() is undefined
static LLDirPicker& instance( void ) { return sInstance; }
- BOOL getDir(LLString* filename);
- LLString getDirName();
+ BOOL getDir(std::string* filename);
+ std::string getDirName();
// clear any lists of buffers or whatever, and make sure the dir
// picker isn't locked.
@@ -94,9 +94,8 @@ private:
LLFilePicker *mFilePicker;
#endif
- char mDirs[DIRNAME_BUFFER_SIZE]; /*Flawfinder: ignore*/
- LLString* mFileName;
- LLString mDir;
+ std::string* mFileName;
+ std::string mDir;
BOOL mLocked;
static LLDirPicker sInstance;