Skip to content

Commit

Permalink
KvsObject_widget: port QWidget::isTopLevel to QWidget::isWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlaltca committed Mar 21, 2024
1 parent ff95323 commit 067996c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/objects/KvsObject_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ KVSO_CLASS_FUNCTION(widget, windowTitle)
KVSO_CLASS_FUNCTION(widget, isTopLevel)
{
CHECK_INTERNAL_POINTER(widget())
c->returnValue()->setBoolean(widget()->isTopLevel());
c->returnValue()->setBoolean(widget()->isWindow());
return true;
}

Expand Down

0 comments on commit 067996c

Please sign in to comment.