mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
VirtualGui: Removed stray DDUMPs
git-svn-id: svn://ultimatepp.org/upp/trunk@11918 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
1da9dfca0e
commit
faead0fed9
2 changed files with 1 additions and 4 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue