Skip to content

Commit

Permalink
[10966] Fixed typos in Callback template classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Jan 5, 2011
1 parent 66d7c5c commit 42a52c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/framework/Utilities/Callback.h
Expand Up @@ -46,7 +46,7 @@ namespace MaNGOS
}

_Callback(_Callback<Class, ParamType1, ParamType2, ParamType3, ParamType4> const& cb)
: m_object(cb.object), m_method(cb.m_method),
: m_object(cb.m_object), m_method(cb.m_method),
m_param1(cb.m_param1), m_param2(cb.m_param2), m_param3(cb.m_param3), m_param4(cb.m_param4)
{
}
Expand All @@ -73,7 +73,7 @@ namespace MaNGOS
}

_Callback(_Callback<Class, ParamType1, ParamType2, ParamType3> const& cb)
: m_object(cb.object), m_method(cb.m_method),
: m_object(cb.m_object), m_method(cb.m_method),
m_param1(cb.m_param1), m_param2(cb.m_param2), m_param3(cb.m_param3)
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10965"
#define REVISION_NR "10966"
#endif // __REVISION_NR_H__

1 comment on commit 42a52c5

@BThallid
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just saw this bug yesterday.
I'm beginning to think that either you are monitoring some source code on our computers or you can just read our minds. ;)

Please sign in to comment.