add more spacing
[personal-kdebase.git] / workspace / ksmserver / kcm / smserverconfigimpl.cpp
blobb08cac07ff2a7ada989ccbfa984d2b16da0067ae
1 /***************************************************************************
2 smserverconfigimpl.cpp - description
3 -------------------
4 begin : Thu May 17 2001
5 copyright : (C) 2001 by stulle
6 email : stulle@tux
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #include "smserverconfigimpl.h"
19 #include "smserverconfigimpl.moc"
21 SMServerConfigImpl::SMServerConfigImpl(QWidget *parent ) : SMServerConfigDlg(parent) {
22 connect(confirmLogoutCheck,SIGNAL(toggled(bool)), SLOT(configChanged()));
23 connect(previousSessionRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
24 connect(savedSessionRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
25 connect(emptySessionRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
26 connect(logoutRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
27 connect(haltRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
28 connect(rebootRadio,SIGNAL(toggled(bool)), SLOT(configChanged()));
29 connect(excludeLineedit,SIGNAL(textChanged(QString)),SLOT(configChanged()));
30 connect(offerShutdownCheck,SIGNAL(toggled(bool)),SLOT(configChanged()));
32 SMServerConfigImpl::~SMServerConfigImpl(){
34 /** No descriptions */
35 void SMServerConfigImpl::configChanged(){
37 emit changed();