From 16ada369cb522349a2b9c9fcd9492d5b399de781 Mon Sep 17 00:00:00 2001 From: Sandro Giessl Date: Sun, 25 Jul 2004 12:20:46 +0000 Subject: [PATCH] style guide fix svn path=/trunk/kdebase/kwin/; revision=332541 --- clients/quartz/quartz.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/quartz/quartz.cpp b/clients/quartz/quartz.cpp index 307199cd88..4bbea20932 100644 --- a/clients/quartz/quartz.cpp +++ b/clients/quartz/quartz.cpp @@ -684,7 +684,7 @@ void QuartzClient::addClientButtons( const QString& s, bool isLeft ) button[BtnAbove] = new QuartzButton(this, "above", largeButtons, isLeft, true, keepAbove() ? above_on_bits : above_off_bits, - i18n("Keep Above Others")); + i18n("Keep above others")); connect( button[BtnAbove], SIGNAL( clicked()), this, SLOT(slotAbove()) ); hb->addWidget( button[BtnAbove] ); @@ -698,7 +698,7 @@ void QuartzClient::addClientButtons( const QString& s, bool isLeft ) button[BtnBelow] = new QuartzButton(this, "below", largeButtons, isLeft, true, keepBelow() ? below_on_bits : below_off_bits, - i18n("Keep Below Others")); + i18n("Keep below others")); connect( button[BtnBelow], SIGNAL( clicked()), this, SLOT(slotBelow()) ); hb->addWidget( button[BtnBelow] );