linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #02774
[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2359: add some this-> for mingw
------------------------------------------------------------
revno: 2359
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Tue 2010-12-21 16:16:44 +0100
message:
add some this-> for mingw
modified:
dwt/include/dwt/widgets/Splitter.h
--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dwt/include/dwt/widgets/Splitter.h'
--- dwt/include/dwt/widgets/Splitter.h 2010-12-21 14:40:47 +0000
+++ dwt/include/dwt/widgets/Splitter.h 2010-12-21 15:16:44 +0000
@@ -156,9 +156,9 @@
pos = cs.pos;
BaseType::create(cs);
- onLeftMouseDown([this](const MouseEvent&) { return handleLButtonDown(); });
- onMouseMove([this](const MouseEvent& mouseEvent) { return handleMouseMove(mouseEvent); });
- onLeftMouseUp([this](const MouseEvent&) { return handleLButtonUp(); });
+ onLeftMouseDown([this](const MouseEvent&) { return GCC_WTF->handleLButtonDown(); });
+ onMouseMove([this](const MouseEvent& mouseEvent) { return GCC_WTF->handleMouseMove(mouseEvent); });
+ onLeftMouseUp([this](const MouseEvent&) { return GCC_WTF->handleLButtonUp(); });
}
template<bool horizontal>