diff options
author | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:11 -0500 |
commit | 215f423cbe18fe9ca14a26caef918d303bad28ff (patch) | |
tree | 0743442b286216cc8e19aa487c26f4e9345ffd64 /linden/indra/newview/lldirpicker.h | |
parent | Second Life viewer sources 1.18.3.5-RC (diff) | |
download | meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.zip meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.gz meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.bz2 meta-impy-215f423cbe18fe9ca14a26caef918d303bad28ff.tar.xz |
Second Life viewer sources 1.18.4.0-RC
Diffstat (limited to 'linden/indra/newview/lldirpicker.h')
-rw-r--r-- | linden/indra/newview/lldirpicker.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/linden/indra/newview/lldirpicker.h b/linden/indra/newview/lldirpicker.h index 1b9664f..0bfb362 100644 --- a/linden/indra/newview/lldirpicker.h +++ b/linden/indra/newview/lldirpicker.h | |||
@@ -2,6 +2,8 @@ | |||
2 | * @dir lldirpicker.h | 2 | * @dir lldirpicker.h |
3 | * @brief OS-specific dir picker | 3 | * @brief OS-specific dir picker |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2001&license=viewergpl$ | ||
6 | * | ||
5 | * Copyright (c) 2001-2007, Linden Research, Inc. | 7 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 8 | * |
7 | * Second Life Viewer Source Code | 9 | * Second Life Viewer Source Code |
@@ -24,6 +26,7 @@ | |||
24 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 26 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO |
25 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 27 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, |
26 | * COMPLETENESS OR PERFORMANCE. | 28 | * COMPLETENESS OR PERFORMANCE. |
29 | * $/LicenseInfo$ | ||
27 | */ | 30 | */ |
28 | 31 | ||
29 | // OS specific dir selection dialog. This is implemented as a | 32 | // OS specific dir selection dialog. This is implemented as a |
@@ -53,6 +56,8 @@ | |||
53 | #include <commdlg.h> | 56 | #include <commdlg.h> |
54 | #endif | 57 | #endif |
55 | 58 | ||
59 | class LLFilePicker; | ||
60 | |||
56 | class LLDirPicker | 61 | class LLDirPicker |
57 | { | 62 | { |
58 | public: | 63 | public: |
@@ -84,6 +89,11 @@ private: | |||
84 | 89 | ||
85 | #endif | 90 | #endif |
86 | 91 | ||
92 | #if LL_LINUX | ||
93 | // On Linux we just implement LLDirPicker on top of LLFilePicker | ||
94 | LLFilePicker *mFilePicker; | ||
95 | #endif | ||
96 | |||
87 | char mDirs[DIRNAME_BUFFER_SIZE]; /*Flawfinder: ignore*/ | 97 | char mDirs[DIRNAME_BUFFER_SIZE]; /*Flawfinder: ignore*/ |
88 | LLString* mFileName; | 98 | LLString* mFileName; |
89 | LLString mDir; | 99 | LLString mDir; |