summaryrefslogtreecommitdiffstats
path: root/src/kernel/qwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qwidget.cpp')
-rw-r--r--src/kernel/qwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/qwidget.cpp b/src/kernel/qwidget.cpp
index 65aabb4..28328b8 100644
--- a/src/kernel/qwidget.cpp
+++ b/src/kernel/qwidget.cpp
@@ -847,7 +847,7 @@ QSize qt_naturalWidgetSize( QWidget *w ) {
/*!
Constructs a widget which is a child of \a parent, with the name
- \a name and widget flags set to \a f.
+ \a name, widget flags set to \a f, and NETWM flags set to \a n.
If \a parent is 0, the new widget becomes a top-level window. If
\a parent is another widget, this widget becomes a child window
@@ -877,7 +877,7 @@ QSize qt_naturalWidgetSize( QWidget *w ) {
\endcode
*/
-QWidget::QWidget( QWidget *parent, const char *name, WFlags f )
+QWidget::QWidget( QWidget *parent, const char *name, WFlags f, NFlags n )
: QObject( parent, name ), QPaintDevice( QInternal::Widget )
{
#if defined(QT_CHECK_STATE) && !defined(Q_WS_WIN)
@@ -893,7 +893,7 @@ QWidget::QWidget( QWidget *parent, const char *name, WFlags f )
winid = 0; // default attributes
widget_state = 0;
widget_flags = f;
- netwm_flags = 0;
+ netwm_flags = n;
focus_policy = 0;
own_font = 0;
own_palette = 0;