diff options
| author | Albert Astals Cid <[email protected]> | 2009-06-04 18:19:28 +0000 |
|---|---|---|
| committer | Albert Astals Cid <[email protected]> | 2009-06-04 18:19:28 +0000 |
| commit | 83e89e112ebdf38042bbc961f3de87df835ec269 (patch) | |
| tree | ff09f79e98ae7862b61a0bd401c29a6a698a4f6f /src/panels/information | |
| parent | d4310cedf1f06cf09f64f270c7a2814f9c3c75d7 (diff) | |
add missing ? to the question
svn path=/trunk/KDE/kdebase/apps/; revision=977582
Diffstat (limited to 'src/panels/information')
| -rw-r--r-- | src/panels/information/tagcloud.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
