aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorPatrick Sapinski2010-08-23 01:32:03 -0400
committerMcCabe Maxsted2010-08-26 11:27:03 -0700
commit77a838a217fdbc57f1727b082a2578ebc35d2e1c (patch)
tree93e1a06c33476de56c026891644e87f9d508dc70 /linden
parentFixed minimum size of the Contacts window (diff)
downloadmeta-impy-77a838a217fdbc57f1727b082a2578ebc35d2e1c.zip
meta-impy-77a838a217fdbc57f1727b082a2578ebc35d2e1c.tar.gz
meta-impy-77a838a217fdbc57f1727b082a2578ebc35d2e1c.tar.bz2
meta-impy-77a838a217fdbc57f1727b082a2578ebc35d2e1c.tar.xz
re-enabled grid specific user settings dirs
Diffstat (limited to 'linden')
-rw-r--r--linden/indra/llvfs/lldir.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/linden/indra/llvfs/lldir.cpp b/linden/indra/llvfs/lldir.cpp
index 29a3771..e4df977 100644
--- a/linden/indra/llvfs/lldir.cpp
+++ b/linden/indra/llvfs/lldir.cpp
@@ -542,16 +542,16 @@ void LLDir::setLindenUserDir(const std::string &grid, const std::string &first,
542 { 542 {
543 // some platforms have case-sensitive filesystems, so be 543 // some platforms have case-sensitive filesystems, so be
544 // utterly consistent with our firstname/lastname case. 544 // utterly consistent with our firstname/lastname case.
545 // std::string gridlower(grid); 545 std::string gridlower(grid);
546 // LLStringUtil::toLower(gridlower); 546 LLStringUtil::toLower(gridlower);
547 std::string firstlower(first); 547 std::string firstlower(first);
548 LLStringUtil::toLower(firstlower); 548 LLStringUtil::toLower(firstlower);
549 std::string lastlower(last); 549 std::string lastlower(last);
550 LLStringUtil::toLower(lastlower); 550 LLStringUtil::toLower(lastlower);
551 mLindenUserDir = getOSUserAppDir(); 551 mLindenUserDir = getOSUserAppDir();
552 mLindenUserDir += mDirDelimiter; 552 mLindenUserDir += mDirDelimiter;
553 // mLindenUserDir += gridlower; 553 mLindenUserDir += gridlower;
554 // mLindenUserDir += "-"; 554 mLindenUserDir += "-";
555 mLindenUserDir += firstlower; 555 mLindenUserDir += firstlower;
556 mLindenUserDir += "_"; 556 mLindenUserDir += "_";
557 mLindenUserDir += lastlower; 557 mLindenUserDir += lastlower;
@@ -583,16 +583,16 @@ void LLDir::setPerAccountChatLogsDir(const std::string &grid, const std::string
583 { 583 {
584 // some platforms have case-sensitive filesystems, so be 584 // some platforms have case-sensitive filesystems, so be
585 // utterly consistent with our firstname/lastname case. 585 // utterly consistent with our firstname/lastname case.
586 // std::string gridlower(grid); 586 std::string gridlower(grid);
587 // LLStringUtil::toLower(gridlower); 587 LLStringUtil::toLower(gridlower);
588 std::string firstlower(first); 588 std::string firstlower(first);
589 LLStringUtil::toLower(firstlower); 589 LLStringUtil::toLower(firstlower);
590 std::string lastlower(last); 590 std::string lastlower(last);
591 LLStringUtil::toLower(lastlower); 591 LLStringUtil::toLower(lastlower);
592 mPerAccountChatLogsDir = getChatLogsDir(); 592 mPerAccountChatLogsDir = getChatLogsDir();
593 mPerAccountChatLogsDir += mDirDelimiter; 593 mPerAccountChatLogsDir += mDirDelimiter;
594 // mPerAccountChatLogsDir += gridlower; 594 mPerAccountChatLogsDir += gridlower;
595 // mPerAccountChatLogsDir += "-"; 595 mPerAccountChatLogsDir += "-";
596 mPerAccountChatLogsDir += firstlower; 596 mPerAccountChatLogsDir += firstlower;
597 mPerAccountChatLogsDir += "_"; 597 mPerAccountChatLogsDir += "_";
598 mPerAccountChatLogsDir += lastlower; 598 mPerAccountChatLogsDir += lastlower;