File indexing completed on 2024-09-08 13:16:50
0001 /* 0002 SPDX-FileCopyrightText: 2008 Michael Jansen <kde@michael-jansen.biz> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "action_widget_base.h" 0008 0009 ActionWidgetBase::ActionWidgetBase(KHotKeys::Action *action, QWidget *parent) 0010 : HotkeysWidgetIFace(parent) 0011 , _action(action) 0012 { 0013 } 0014 0015 ActionWidgetBase::~ActionWidgetBase() 0016 { 0017 } 0018 0019 #include "moc_action_widget_base.cpp"