mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-09 19:41:04 +00:00
fixed gcc4 compile errors
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@51 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
04a785fb1c
commit
ac8ea48034
1 changed files with 4 additions and 4 deletions
|
@ -279,7 +279,7 @@ public:
|
|||
}
|
||||
result_type operator()() const
|
||||
{
|
||||
return getThunk()(getEnvironment());
|
||||
return Base::getThunk()(Base::getEnvironment());
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -325,7 +325,7 @@ public:
|
|||
}
|
||||
result_type operator()(FirstArgument firstArgument) const
|
||||
{
|
||||
return getThunk()(getEnvironment(), firstArgument);
|
||||
return Base::getThunk()(Base::getEnvironment(), firstArgument);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -368,7 +368,7 @@ public:
|
|||
}
|
||||
result_type operator()(FirstArgument firstArgument, SecondArgument secondArgument) const
|
||||
{
|
||||
return getThunk()(getEnvironment(), firstArgument, secondArgument);
|
||||
return Base::getThunk()(Base::getEnvironment(), firstArgument, secondArgument);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -424,7 +424,7 @@ public:
|
|||
}
|
||||
result_type operator()(FirstArgument firstArgument, SecondArgument secondArgument, ThirdArgument thirdArgument) const
|
||||
{
|
||||
return getThunk()(getEnvironment(), firstArgument, secondArgument, thirdArgument);
|
||||
return Base::getThunk()(Base::getEnvironment(), firstArgument, secondArgument, thirdArgument);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue