From eac86b256d300988ad9440e3a007c6146e2be260 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 25 Mar 2010 17:48:57 +0000 Subject: [PATCH] Fixed translation of Log out button git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1107452 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksmserver/shutdowndlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ksmserver/shutdowndlg.cpp b/ksmserver/shutdowndlg.cpp index 814736b96..25e4aaf30 100644 --- a/ksmserver/shutdowndlg.cpp +++ b/ksmserver/shutdowndlg.cpp @@ -312,10 +312,10 @@ KSMShutdownDlg::KSMShutdownDlg( QWidget* parent, hbuttonbox = new QHBoxLayout( hbox, factor * KDialog::spacingHint() ); hbuttonbox->setAlignment( Qt::AlignHCenter ); // End session - FlatButton* btnLogout = new FlatButton( frame ); - btnLogout->setTextLabel( i18n("&Log out"), false ); + FlatButton* btnLogout = new FlatButton( frame ); + btnLogout->setTextLabel( QString("&") + i18n("Log out"), false ); btnLogout->setPixmap( DesktopIcon( "back") ); - int i = btnLogout->textLabel().find( QRegExp("\\&"), 0 ); // i == 1 + int i = btnLogout->textLabel().find( QRegExp("\\&"), 0 ); // i == 1 btnLogout->setAccel( "ALT+" + btnLogout->textLabel().lower()[i+1] ) ; hbuttonbox->addWidget ( btnLogout ); connect(btnLogout, SIGNAL(clicked()), SLOT(slotLogout()));