aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llurlwhitelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llurlwhitelist.h')
-rw-r--r--linden/indra/newview/llurlwhitelist.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llurlwhitelist.h b/linden/indra/newview/llurlwhitelist.h
index 2b980b2..3e796f4 100644
--- a/linden/indra/newview/llurlwhitelist.h
+++ b/linden/indra/newview/llurlwhitelist.h
@@ -48,21 +48,21 @@ class LLUrlWhiteList
48 bool save (); 48 bool save ();
49 49
50 bool clear (); 50 bool clear ();
51 bool addItem ( const LLString& itemIn, bool saveAfterAdd ); 51 bool addItem ( const std::string& itemIn, bool saveAfterAdd );
52 52
53 bool containsMatch ( const LLString& patternIn ); 53 bool containsMatch ( const std::string& patternIn );
54 54
55 bool getFirst ( LLString& valueOut ); 55 bool getFirst ( std::string& valueOut );
56 bool getNext ( LLString& valueOut ); 56 bool getNext ( std::string& valueOut );
57 57
58 private: 58 private:
59 LLUrlWhiteList (); 59 LLUrlWhiteList ();
60 static LLUrlWhiteList* sInstance; 60 static LLUrlWhiteList* sInstance;
61 61
62 typedef std::vector < LLString > string_list_t ; 62 typedef std::vector < std::string > string_list_t ;
63 63
64 bool mLoaded; 64 bool mLoaded;
65 const LLString mFilename; 65 const std::string mFilename;
66 string_list_t mUrlList; 66 string_list_t mUrlList;
67 U32 mCurIndex; 67 U32 mCurIndex;
68}; 68};