aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui
diff options
context:
space:
mode:
authorPaulo Alcantara <pcacjr@gmail.com>2011-11-25 15:28:03 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:56:17 -0300
commit8160e529e2d41351fb191e29b999f32c7807b1e8 (patch)
tree3572a99f12e7680eb53881878a1aa1d72ad1c5c3 /PySide/QtGui
parent45ad11e5be972579f492c142ea3caf79e9bf96fd (diff)
Fix BUG #1048
Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Willer Moreira <willer.moreira@openbossa.org> Hugo Parente Lima <hugo.lima@openbossa.org>
Diffstat (limited to 'PySide/QtGui')
-rw-r--r--PySide/QtGui/glue/qlayout_help_functions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/PySide/QtGui/glue/qlayout_help_functions.h b/PySide/QtGui/glue/qlayout_help_functions.h
index 41b315376..00f0dbde7 100644
--- a/PySide/QtGui/glue/qlayout_help_functions.h
+++ b/PySide/QtGui/glue/qlayout_help_functions.h
@@ -63,6 +63,9 @@ inline void addLayoutOwnership(QLayout* layout, QLayout* other)
inline void addLayoutOwnership(QLayout* layout, QLayoutItem* item)
{
+ if (!item)
+ return;
+
QWidget* w = item->widget();
if (w)
addLayoutOwnership(layout, w);