remove warning
svn path=/trunk/kdebase/kwin/; revision=174081
This commit is contained in:
parent
a33f4313ab
commit
d3210cbb64
2 changed files with 3 additions and 3 deletions
|
@ -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() );
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue