Remove margins around dialogs

svn path=/trunk/KDE/kdebase/workspace/; revision=669265
This commit is contained in:
Robert Knight 2007-05-28 22:21:39 +00:00
parent 9334e70862
commit dda35ceb96
3 changed files with 4 additions and 0 deletions

View file

@ -40,6 +40,7 @@ KWinEffectsConfig::KWinEffectsConfig(QWidget *parent, const QStringList &)
{
mPluginSelector = new KPluginSelector(this);
QHBoxLayout* layout = new QHBoxLayout;
layout->setMargin(0);
layout->addWidget(mPluginSelector);
setLayout(layout);

View file

@ -93,6 +93,7 @@ KWinOptions::KWinOptions(QWidget *parent, const QStringList &)
mConfig = new KConfig( "kwinrc", KConfig::IncludeGlobals );
QVBoxLayout *layout = new QVBoxLayout(this);
layout->setMargin(0);
tab = new QTabWidget(this);
layout->addWidget(tab);

View file

@ -41,6 +41,8 @@ KCMRules::KCMRules( QWidget *parent, const QStringList & )
, config( "kwinrulesrc" )
{
QVBoxLayout *layout = new QVBoxLayout( this );
layout->setMargin(0);
widget = new KCMRulesList( this );
layout->addWidget( widget );
connect( widget, SIGNAL( changed( bool )), SLOT( moduleChanged( bool )));