diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-01-24 23:13:38 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-01-24 23:13:38 +0000 |
commit | a968178f19399740be05ef220d0fad828ab0a87a (patch) | |
tree | cc424a7506bc3bb7d705bb947e823087b6058bd7 /verifynotification.cpp | |
parent | resized images for integrated help by 50% (diff) | |
download | gpg4usb-a968178f19399740be05ef220d0fad828ab0a87a.tar.gz gpg4usb-a968178f19399740be05ef220d0fad828ab0a87a.zip |
moved layout definitions from header to sourcefile where possible
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@775 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifynotification.cpp')
-rw-r--r-- | verifynotification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verifynotification.cpp b/verifynotification.cpp index 0319c31..284d511 100644 --- a/verifynotification.cpp +++ b/verifynotification.cpp @@ -46,7 +46,7 @@ VerifyNotification::VerifyNotification(QWidget *parent, GpgME::GpgContext *ctx, keysNotInList = new QStringList(); detailsButton = new QPushButton("Details",this); detailsButton->setMenu(detailMenu); - notificationWidgetLayout = new QHBoxLayout(this); + QHBoxLayout *notificationWidgetLayout = new QHBoxLayout(this); notificationWidgetLayout->setContentsMargins(10,0,0,0); notificationWidgetLayout->addWidget(verifyLabel,2); notificationWidgetLayout->addWidget(detailsButton); |