diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/selectionmode/actionwithwidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selectionmode/actionwithwidget.h b/src/selectionmode/actionwithwidget.h index 8e09e92e0..52369bf85 100644 --- a/src/selectionmode/actionwithwidget.h +++ b/src/selectionmode/actionwithwidget.h @@ -45,13 +45,13 @@ public: inline QAction *action() { Q_ASSERT(m_action); - return m_action; + return m_action.data(); }; /** @returns the widget of this object. */ inline QWidget *widget() { - return m_widget; + return m_widget.data(); } /** |
