diff options
| author | Mark Palange (Mani) <palange@lindenlab.com> | 2009-10-01 18:19:45 -0700 | 
|---|---|---|
| committer | Mark Palange (Mani) <palange@lindenlab.com> | 2009-10-01 18:19:45 -0700 | 
| commit | dde2153014cd7d7b8fa704f7067a41344bfbb1c2 (patch) | |
| tree | f7633ccef179644660897c8bf3684abeda3545f8 /indra/llvfs | |
| parent | 9b8b0571645f8b607ecc24221c807cc02a03692f (diff) | |
| parent | 85ea690d47208f6dda020c8ff81021179fbdd0b8 (diff) | |
merge of latest lindenlab/svn-imports-viewer-20
Diffstat (limited to 'indra/llvfs')
| -rw-r--r-- | indra/llvfs/lldir_linux.cpp | 2 | ||||
| -rw-r--r-- | indra/llvfs/lldir_mac.cpp | 2 | ||||
| -rw-r--r-- | indra/llvfs/lldir_win32.cpp | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/indra/llvfs/lldir_linux.cpp b/indra/llvfs/lldir_linux.cpp index 24efcb8ae8..7a531e0fbf 100644 --- a/indra/llvfs/lldir_linux.cpp +++ b/indra/llvfs/lldir_linux.cpp @@ -383,7 +383,7 @@ BOOL LLDir_Linux::fileExists(const std::string &filename) const  /*virtual*/ std::string LLDir_Linux::getLLPluginLauncher()  { -	return gDirUtilp->getLLPluginDir() + gDirUtilp->getDirDelimiter() + +	return gDirUtilp->getExecutableDir() + gDirUtilp->getDirDelimiter() +  		"SLPlugin";  } diff --git a/indra/llvfs/lldir_mac.cpp b/indra/llvfs/lldir_mac.cpp index 9be787df11..346f7dd8ed 100644 --- a/indra/llvfs/lldir_mac.cpp +++ b/indra/llvfs/lldir_mac.cpp @@ -424,7 +424,7 @@ BOOL LLDir_Mac::fileExists(const std::string &filename) const  /*virtual*/ std::string LLDir_Mac::getLLPluginLauncher()  { -	return gDirUtilp->getLLPluginDir() + gDirUtilp->getDirDelimiter() + +	return gDirUtilp->getAppRODataDir() + gDirUtilp->getDirDelimiter() +  		"SLPlugin";  } diff --git a/indra/llvfs/lldir_win32.cpp b/indra/llvfs/lldir_win32.cpp index 872f2cf1c1..3e302764de 100644 --- a/indra/llvfs/lldir_win32.cpp +++ b/indra/llvfs/lldir_win32.cpp @@ -397,7 +397,7 @@ BOOL LLDir_Win32::fileExists(const std::string &filename) const  /*virtual*/ std::string LLDir_Win32::getLLPluginLauncher()  { -	return gDirUtilp->getLLPluginDir() + gDirUtilp->getDirDelimiter() + +	return gDirUtilp->getExecutableDir() + gDirUtilp->getDirDelimiter() +  		"SLPlugin.exe";  } | 
