From d3210cbb641399aa6298e447eddca8ede8366873 Mon Sep 17 00:00:00 2001 From: Karol Szwed Date: Tue, 27 Aug 2002 15:18:17 +0000 Subject: [PATCH] remove warning svn path=/trunk/kdebase/kwin/; revision=174081 --- clients/b2/config/config.cpp | 4 ++-- kcmkwin/kwinoptions/windows.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/b2/config/config.cpp b/clients/b2/config/config.cpp index 10676a22f9..9657a214dc 100644 --- a/clients/b2/config/config.cpp +++ b/clients/b2/config/config.cpp @@ -71,7 +71,7 @@ void B2Config::slotSelectionChanged() // Loads the configurable options from the kwinrc config file // It is passed the open config from kwindecoration to improve efficiency -void B2Config::load( KConfig* conf ) +void B2Config::load( KConfig* /*conf*/ ) { b2Config->setGroup("General"); bool override = b2Config->readBoolEntry( "UseTitleBarBorderColors", false ); @@ -80,7 +80,7 @@ void B2Config::load( KConfig* conf ) // Saves the configurable options to the kwinrc config file -void B2Config::save( KConfig* conf ) +void B2Config::save( KConfig* /*conf*/ ) { b2Config->setGroup("General"); b2Config->writeEntry( "UseTitleBarBorderColors", cbColorBorder->isChecked() ); diff --git a/kcmkwin/kwinoptions/windows.cpp b/kcmkwin/kwinoptions/windows.cpp index 1e6361373b..6fc841f25c 100644 --- a/kcmkwin/kwinoptions/windows.cpp +++ b/kcmkwin/kwinoptions/windows.cpp @@ -556,7 +556,7 @@ void KAdvancedConfig::shadeHoverChanged(bool a) { shadeHover->setEnabled(a); } -void KAdvancedConfig::setXinerama(bool on) { +void KAdvancedConfig::setXinerama(bool /*on*/) { #ifdef HAVE_XINERAMA if (KApplication::desktop()->isVirtualDesktop()) xineramaEnable->setChecked(on);