VirtualGui: Removed stray DDUMPs

git-svn-id: svn://ultimatepp.org/upp/trunk@11918 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-04-28 08:10:29 +00:00
parent 1da9dfca0e
commit faead0fed9
2 changed files with 1 additions and 4 deletions

View file

@ -25,7 +25,7 @@ private:
void DestroyWnd();
void NewTop() { DDUMP(this); top = new Top; top->owner_window = NULL; }
void NewTop() { top = new Top; top->owner_window = NULL; }
void PutForeground();
static void MouseEventFB(Ptr<Ctrl> t, int event, Point p, int zdelta);

View file

@ -260,7 +260,6 @@ Rect Ctrl::GetWorkArea(Point pt)
Rect Ctrl::GetVirtualScreenArea()
{
GuiLock __;
DDUMP(desktop->GetRect());
return desktop ? desktop->GetRect() : Rect(0, 0, 0, 0);
}
@ -479,7 +478,6 @@ void Ctrl::SysEndLoop()
void Ctrl::DeleteDesktopTop()
{
if(desktop && desktop->top) {
DLOG("delete desktop->top " << desktop->top);
delete desktop->top;
desktop->top = NULL;
}
@ -487,7 +485,6 @@ void Ctrl::DeleteDesktopTop()
void Ctrl::SetDesktop(Ctrl& q)
{
DLOG("SetDesktop " << &q);
DeleteDesktopTop();
desktop = &q;
desktop->SetOpen(true);