From: Albert Astals Cid Date: Thu, 4 Jun 2009 18:19:28 +0000 (+0000) Subject: add missing ? to the question X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/83e89e112ebdf38042bbc961f3de87df835ec269?ds=sidebyside add missing ? to the question svn path=/trunk/KDE/kdebase/apps/; revision=977582 --- diff --git a/src/panels/information/tagcloud.cpp b/src/panels/information/tagcloud.cpp index b52df82c4..ca3a51af1 100644 --- a/src/panels/information/tagcloud.cpp +++ b/src/panels/information/tagcloud.cpp @@ -918,7 +918,7 @@ void Nepomuk::TagCloud::mousePressEvent( QMouseEvent* e ) KMenu menu; QAction* a = menu.addAction( KIcon( "edit-delete" ), i18nc( "@action:menu", "Delete tag '%1'", node->text ) ); if ( menu.exec( e->globalPos() ) == a && - KMessageBox::questionYesNo( this, i18n( "Do you really want to delete tag '%1'", node->text ) ) == KMessageBox::Yes ) { + KMessageBox::questionYesNo( this, i18n( "Do you really want to delete tag '%1'?", node->text ) ) == KMessageBox::Yes ) { if ( d->selectionEnabled && node->selected ) { node->selected = false;