diff options
author | Aura Linden <aura@lindenlab.com> | 2012-11-12 18:06:32 -0800 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2012-11-12 18:06:32 -0800 |
commit | eca619985206462d39dc9ae665857e97948562da (patch) | |
tree | fb7b9c7eb7a8a68efef5a8c2de98bf5c970b6c4e /indra/newview/tests | |
parent | 44d511669ba85a0311dc8d0901f22a1f38c0790b (diff) |
Ported slplugin and some other missing components for cocoa.
Diffstat (limited to 'indra/newview/tests')
-rw-r--r-- | indra/newview/tests/lldir_stub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/tests/lldir_stub.cpp b/indra/newview/tests/lldir_stub.cpp index 18cf4e7419..88f063f009 100644 --- a/indra/newview/tests/lldir_stub.cpp +++ b/indra/newview/tests/lldir_stub.cpp @@ -48,7 +48,7 @@ public: /*virtual*/ U32 countFilesInDir(const std::string &dirname, const std::string &mask) { return 42; } /*virtual*/ BOOL getNextFileInDir(const std::string &dirname, const std::string &mask, std::string &fname, BOOL wrap) { fname = fname + "_NEXT"; return false; } /*virtual*/ void getRandomFileInDir(const std::string &dirname, const std::string &mask, std::string &fname) { fname = "RANDOM_FILE"; } - /*virtual*/ BOOL fileExists(const std::string &filename) const { return false; } + /*virtual*/ bool fileExists(const std::string &filename) const { return false; } }; LLDir_stub gDirUtil; |