summaryrefslogtreecommitdiff
path: root/Protocols/IAX/IAXProto.cpp
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-04 17:49:05 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2010-01-04 17:49:05 +0000
commitc081248a92bb7c1eb2681156e829affd28fa8080 (patch)
tree1d3b5fece67284995d67c7ca63c027095bfda0fb /Protocols/IAX/IAXProto.cpp
parent894989e1bd2885ef7d7c9a5c9df8c8d689d02fb8 (diff)
iax: 0.1.1.0
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@204 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Protocols/IAX/IAXProto.cpp')
-rw-r--r--Protocols/IAX/IAXProto.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Protocols/IAX/IAXProto.cpp b/Protocols/IAX/IAXProto.cpp
index d8108e2..b1f81de 100644
--- a/Protocols/IAX/IAXProto.cpp
+++ b/Protocols/IAX/IAXProto.cpp
@@ -241,7 +241,7 @@ int IAXProto::SendBroadcast(HANDLE hContact, int type, int result, HANDLE hProce
#define MESSAGE_TYPE_ERROR 2
-void IAXProto::Trace(TCHAR *fmt, ...)
+void IAXProto::Trace(const TCHAR *fmt, ...)
{
va_list args;
va_start(args, fmt);
@@ -252,7 +252,7 @@ void IAXProto::Trace(TCHAR *fmt, ...)
}
-void IAXProto::Info(TCHAR *fmt, ...)
+void IAXProto::Info(const TCHAR *fmt, ...)
{
va_list args;
va_start(args, fmt);
@@ -263,7 +263,7 @@ void IAXProto::Info(TCHAR *fmt, ...)
}
-void IAXProto::Error(TCHAR *fmt, ...)
+void IAXProto::Error(const TCHAR *fmt, ...)
{
va_list args;
va_start(args, fmt);
@@ -274,7 +274,7 @@ void IAXProto::Error(TCHAR *fmt, ...)
}
-void IAXProto::ShowMessage(int type, TCHAR *fmt, va_list args)
+void IAXProto::ShowMessage(int type, const TCHAR *fmt, va_list args)
{
TCHAR buff[1024];
if (type == MESSAGE_TYPE_TRACE)