From ec918cec3beace78d85727809019ac7499d8b538 Mon Sep 17 00:00:00 2001 From: Karol Szwed Date: Tue, 27 Aug 2002 15:31:58 +0000 Subject: [PATCH] suppress warnings svn path=/trunk/kdebase/kwin/; revision=174085 --- clients/quartz/config/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/quartz/config/config.cpp b/clients/quartz/config/config.cpp index 495320411b..5df6934020 100644 --- a/clients/quartz/config/config.cpp +++ b/clients/quartz/config/config.cpp @@ -71,7 +71,7 @@ void QuartzConfig::slotSelectionChanged() // Loads the configurable options from the kwinrc config file // It is passed the open config from kwindecoration to improve efficiency -void QuartzConfig::load( KConfig* conf ) +void QuartzConfig::load( KConfig* /*conf*/ ) { quartzConfig->setGroup("General"); bool override = quartzConfig->readBoolEntry( "UseTitleBarBorderColors", true ); @@ -80,7 +80,7 @@ void QuartzConfig::load( KConfig* conf ) // Saves the configurable options to the kwinrc config file -void QuartzConfig::save( KConfig* conf ) +void QuartzConfig::save( KConfig* /*conf*/ ) { quartzConfig->setGroup("General"); quartzConfig->writeEntry( "UseTitleBarBorderColors", cbColorBorder->isChecked() );