Fix spelling error.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33843 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -359,9 +359,9 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<class T, class R>
|
template<class T, class R>
|
||||||
class PlainMemberFunctionObjectWitResult : public FunctionObjectWithResult<R> {
|
class PlainMemberFunctionObjectWithResult : public FunctionObjectWithResult<R> {
|
||||||
public:
|
public:
|
||||||
PlainMemberFunctionObjectWitResult(R (T::*function)(), T *onThis)
|
PlainMemberFunctionObjectWithResult(R (T::*function)(), T *onThis)
|
||||||
: function(function),
|
: function(function),
|
||||||
target(onThis)
|
target(onThis)
|
||||||
{
|
{
|
||||||
@@ -420,9 +420,9 @@ protected:
|
|||||||
|
|
||||||
|
|
||||||
template<class T, class R, class Param1>
|
template<class T, class R, class Param1>
|
||||||
class SingleParamMemberFunctionObjectWitResult : public FunctionObjectWithResult<R> {
|
class SingleParamMemberFunctionObjectWithResult : public FunctionObjectWithResult<R> {
|
||||||
public:
|
public:
|
||||||
SingleParamMemberFunctionObjectWitResult(R (T::*function)(Param1), T *onThis,
|
SingleParamMemberFunctionObjectWithResult(R (T::*function)(Param1), T *onThis,
|
||||||
Param1 p1)
|
Param1 p1)
|
||||||
: function(function),
|
: function(function),
|
||||||
target(onThis),
|
target(onThis),
|
||||||
|
|||||||
Reference in New Issue
Block a user