diff --git a/uppsrc/CtrlCore/CocoProc.mm b/uppsrc/CtrlCore/CocoProc.mm index 326ae8185..4e394e36c 100644 --- a/uppsrc/CtrlCore/CocoProc.mm +++ b/uppsrc/CtrlCore/CocoProc.mm @@ -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; diff --git a/uppsrc/CtrlCore/CtrlMouse.cpp b/uppsrc/CtrlCore/CtrlMouse.cpp index 2b40779b0..ee506678b 100644 --- a/uppsrc/CtrlCore/CtrlMouse.cpp +++ b/uppsrc/CtrlCore/CtrlMouse.cpp @@ -2,7 +2,7 @@ namespace Upp { -#define LLOG(x) DLOG(x) +#define LLOG(x) // DLOG(x) Ptr Ctrl::eventCtrl; Ptr Ctrl::mouseCtrl; diff --git a/uppsrc/CtrlLib/ArrayCtrl.cpp b/uppsrc/CtrlLib/ArrayCtrl.cpp index f21be8b33..79025139d 100644 --- a/uppsrc/CtrlLib/ArrayCtrl.cpp +++ b/uppsrc/CtrlLib/ArrayCtrl.cpp @@ -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) { diff --git a/uppsrc/CtrlLib/DisplayPopup.cpp b/uppsrc/CtrlLib/DisplayPopup.cpp index 6ea501cb1..abba54cf5 100644 --- a/uppsrc/CtrlLib/DisplayPopup.cpp +++ b/uppsrc/CtrlLib/DisplayPopup.cpp @@ -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); }