git-svn-id: svn://ultimatepp.org/upp/trunk@15016 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-09-11 06:42:37 +00:00
parent 4d6f29602e
commit 711fb0857f
4 changed files with 2 additions and 6 deletions

View file

@ -4,7 +4,7 @@
NSEvent *sCurrentMouseEvent__; // needed for drag operation
#define LLOG(x) DLOG(x)
#define LLOG(x) // DLOG(x)
static Upp::Point coco_mouse_pos;
static bool coco_mouse_left;

View file

@ -2,7 +2,7 @@
namespace Upp {
#define LLOG(x) DLOG(x)
#define LLOG(x) // DLOG(x)
Ptr<Ctrl> Ctrl::eventCtrl;
Ptr<Ctrl> Ctrl::mouseCtrl;

View file

@ -1682,7 +1682,6 @@ void ArrayCtrl::ClickSel(dword flags)
void ArrayCtrl::LeftDown(Point p, dword flags)
{
DLOG("ArrayCtrl " << p);
if(IsReadOnly()) return;
int q = header.GetSplit(p.x);
if(q >= 0) {

View file

@ -9,9 +9,6 @@ Point DisplayPopup::Op(Point p)
void DisplayPopup::LeftDown(Point p, dword flags)
{
DDUMP(p);
DDUMP(Op(p));
DDUMP(Upp::Name(ctrl));
ctrl->LeftDown(Op(p), flags);
}