Changeset 25044 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 27, 2009 10:17:24 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55375
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMLogViewer.cpp
r24107 r25044 301 301 } 302 302 } 303 304 /* Make sure the log view widget has the focus */ 305 QWidget *w = currentLogPage(); 306 if (w) 307 w->setFocus(); 303 308 } 304 309 … … 492 497 bool VBoxLogSearchPanel::eventFilter (QObject *aObject, QEvent *aEvent) 493 498 { 499 /* Check that the object is a child of the parent of the search panel. If 500 * not do not proceed, cause we get all key events from all windows here. */ 501 QObject *pp = aObject; 502 while(pp && pp != parentWidget()) { pp = pp->parent(); }; 503 if (!pp) 504 return false; 494 505 switch (aEvent->type()) 495 506 {
Note:
See TracChangeset
for help on using the changeset viewer.