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