summaryrefslogtreecommitdiffstats
path: root/src/gui/itemviews/qstyleditemdelegate.cpp
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-07-16 14:54:08 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-07-16 14:57:00 (GMT)
commit95560abfdd3a1755b69f238eff2954d164dff6a5 (patch)
tree042fcd0c2db6885232d7016c36d9b37838541f45 /src/gui/itemviews/qstyleditemdelegate.cpp
parentccb7c66e08b1bc4f31a66221cd4e4f8f61a5e462 (diff)
downloadQt-95560abfdd3a1755b69f238eff2954d164dff6a5.zip
Qt-95560abfdd3a1755b69f238eff2954d164dff6a5.tar.gz
Qt-95560abfdd3a1755b69f238eff2954d164dff6a5.tar.bz2
Small simplification of code in ItemViews (delegate)
Diffstat (limited to 'src/gui/itemviews/qstyleditemdelegate.cpp')
-rw-r--r--src/gui/itemviews/qstyleditemdelegate.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gui/itemviews/qstyleditemdelegate.cpp b/src/gui/itemviews/qstyleditemdelegate.cpp
index edca724..75f2d61 100644
--- a/src/gui/itemviews/qstyleditemdelegate.cpp
+++ b/src/gui/itemviews/qstyleditemdelegate.cpp
@@ -674,12 +674,9 @@ bool QStyledItemDelegate::eventFilter(QObject *object, QEvent *event)
} else if (event->type() == QEvent::FocusOut || event->type() == QEvent::Hide) {
//the Hide event will take care of he editors that are in fact complete dialogs
if (!editor->isActiveWindow() || (QApplication::focusWidget() != editor)) {
- QWidget *w = QApplication::focusWidget();
- while (w) { // don't worry about focus changes internally in the editor
- if (w == editor)
- return false;
- w = w->parentWidget();
- }
+ if (editor->isAncestorOf(QApplication::focusWidget()))
+ return false; // don't worry about focus changes internally in the editor
+
#ifndef QT_NO_DRAGANDDROP
// The window may lose focus during an drag operation.
// i.e when dragging involves the taskbar on Windows.