diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-17 23:02:01 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-17 23:02:01 +0000 |
commit | c0af2d0f37cbf9c93b7cfcc7563ca7dd5ebc571f (patch) | |
tree | 49af356249837341cfcba2f55c374cd363d66afd | |
parent | date change (diff) | |
download | gpg4usb-c0af2d0f37cbf9c93b7cfcc7563ca7dd5ebc571f.tar.gz gpg4usb-c0af2d0f37cbf9c93b7cfcc7563ca7dd5ebc571f.zip |
add linebreak
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@559 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | verifydetailsdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/verifydetailsdialog.cpp b/verifydetailsdialog.cpp index 840eb1c..7ccde37 100644 --- a/verifydetailsdialog.cpp +++ b/verifydetailsdialog.cpp @@ -60,12 +60,12 @@ void VerifyDetailsDialog::refresh() { case 2: { - mVboxLayout->addWidget(new QLabel(tr("Text was completely signed on %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); + mVboxLayout->addWidget(new QLabel(tr("Text was completely signed on\n %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); break; } case 1: { - mVboxLayout->addWidget(new QLabel(tr("Text was partially signed on %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); + mVboxLayout->addWidget(new QLabel(tr("Text was partially signed on\n %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); break; } } |