aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llstartup.cpp')
-rw-r--r--linden/indra/newview/llstartup.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index 12fde5c..d232ea8 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -268,7 +268,6 @@ bool LLStartUp::sLoginFailed = false;
268 268
269void login_show(); 269void login_show();
270void login_callback(S32 option, void* userdata); 270void login_callback(S32 option, void* userdata);
271bool is_hex_string(U8* str, S32 len);
272void show_first_run_dialog(); 271void show_first_run_dialog();
273bool first_run_dialog_callback(const LLSD& notification, const LLSD& response); 272bool first_run_dialog_callback(const LLSD& notification, const LLSD& response);
274void set_startup_status(const F32 frac, const std::string& string, const std::string& msg); 273void set_startup_status(const F32 frac, const std::string& string, const std::string& msg);
@@ -3270,39 +3269,6 @@ void LLStartUp::deletePasswordFromDisk()
3270 LLFile::remove(filepath); 3269 LLFile::remove(filepath);
3271} 3270}
3272 3271
3273bool is_hex_string(U8* str, S32 len)
3274{
3275 bool rv = true;
3276 U8* c = str;
3277 while(rv && len--)
3278 {
3279 switch(*c)
3280 {
3281 case '0':
3282 case '1':
3283 case '2':
3284 case '3':
3285 case '4':
3286 case '5':
3287 case '6':
3288 case '7':
3289 case '8':
3290 case '9':
3291 case 'a':
3292 case 'b':
3293 case 'c':
3294 case 'd':
3295 case 'e':
3296 case 'f':
3297 ++c;
3298 break;
3299 default:
3300 rv = false;
3301 break;
3302 }
3303 }
3304 return rv;
3305}
3306 3272
3307void show_first_run_dialog() 3273void show_first_run_dialog()
3308{ 3274{