add more spacing
[personal-kdebase.git] / workspace / khotkeys / libkhotkeysprivate / action_data / generic_action_data.cpp
blob857ef87c5d1e866314f58ba1ec4923059fd5195f
1 /****************************************************************************
3 KHotKeys
5 Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
7 Distributed under the terms of the GNU General Public License version 2.
9 ****************************************************************************/
11 #include "generic_action_data.h"
12 #include "actions/actions.h"
14 #include <kconfiggroup.h>
17 namespace KHotKeys
21 void Generic_action_data::cfg_write( KConfigGroup& cfg_P ) const
23 base::cfg_write( cfg_P );
24 cfg_P.writeEntry( "Type", "GENERIC_ACTION_DATA" );
28 Generic_action_data::Generic_action_data( ActionDataGroup* parent_P, const QString& name_P,
29 const QString& comment_P, Trigger_list* triggers_P, Condition_list* conditions_P,
30 ActionList* actions_P, bool enabled_P )
31 : ActionData( parent_P, name_P, comment_P, triggers_P, conditions_P, actions_P, enabled_P )
36 Generic_action_data::Generic_action_data( KConfigGroup& cfg_P, ActionDataGroup* parent_P )
37 : ActionData( cfg_P, parent_P )
38 { // CHECKME do nothing ?
42 } // namespace KHotKeys