fix syntax for addwatch
This commit is contained in:
parent
6593700f09
commit
57c97f62f6
@ -27,7 +27,7 @@
|
|||||||
class cmVariableWatch
|
class cmVariableWatch
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef void (WatchMethod)(const std::string& variable, int access_type, void* client_data);
|
typedef void (*WatchMethod)(const std::string& variable, int access_type, void* client_data);
|
||||||
|
|
||||||
cmVariableWatch();
|
cmVariableWatch();
|
||||||
~cmVariableWatch();
|
~cmVariableWatch();
|
||||||
@ -57,7 +57,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
struct Pair
|
struct Pair
|
||||||
{
|
{
|
||||||
WatchMethod* m_Method;
|
WatchMethod m_Method;
|
||||||
void* m_ClientData;
|
void* m_ClientData;
|
||||||
Pair() : m_Method(0), m_ClientData(0) {}
|
Pair() : m_Method(0), m_ClientData(0) {}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user