aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lllogchat.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/lllogchat.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/lllogchat.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/linden/indra/newview/lllogchat.h b/linden/indra/newview/lllogchat.h
index 8c21ff2..694cec6 100644
--- a/linden/indra/newview/lllogchat.h
+++ b/linden/indra/newview/lllogchat.h
@@ -42,12 +42,14 @@ public:
42 LOG_LINE, 42 LOG_LINE,
43 LOG_END 43 LOG_END
44 }; 44 };
45 static LLString timestamp(bool withdate = false); 45 static std::string timestamp(bool withdate = false);
46 static LLString makeLogFileName(LLString(filename)); 46 static std::string makeLogFileName(std::string(filename));
47 static void saveHistory(LLString filename, LLString line); 47 static void saveHistory(std::string filename, std::string line);
48 static void loadHistory(LLString filename, 48 static void loadHistory(std::string filename,
49 void (*callback)(ELogLineType,LLString,void*), 49 void (*callback)(ELogLineType,std::string,void*),
50 void* userdata); 50 void* userdata);
51private:
52 static std::string cleanFileName(std::string filename);
51}; 53};
52 54
53#endif 55#endif