aboutsummaryrefslogtreecommitdiffstats
path: root/gpgwin.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-09-12 13:33:12 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-09-12 13:33:12 +0000
commit25c51ac7b4d03be29c85c20156e020dd623ed6b1 (patch)
treea776d34ee413a8d92f949a8047daa3a1a39201dc /gpgwin.cpp
parentfix for undefined int privkey (diff)
downloadgpg4usb-25c51ac7b4d03be29c85c20156e020dd623ed6b1.tar.gz
gpg4usb-25c51ac7b4d03be29c85c20156e020dd623ed6b1.zip
use QTableWidget instead of QListWidget in KeyList, use bool for privkey in context
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@160 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to '')
-rw-r--r--gpgwin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgwin.cpp b/gpgwin.cpp
index 34baee8..fbf8c24 100644
--- a/gpgwin.cpp
+++ b/gpgwin.cpp
@@ -56,10 +56,10 @@ GpgWin::GpgWin()
m_keyList->setContext(myCtx);
/* List of binary Attachments */
- m_attachments = new Attachments();
+ /*m_attachments = new Attachments();
m_attachments->setIconPath(iconPath);
m_attachments->setContext(myCtx);
- m_attachments->setKeyList(m_keyList);
+ m_attachments->setKeyList(m_keyList);*/
createActions();
createMenus();
@@ -232,10 +232,10 @@ void GpgWin::createDockWindows()
addDockWidget(Qt::RightDockWidgetArea, dock);
dock->setWidget(m_keyList);
- dock = new QDockWidget(tr("Attached files:"), this);
+ /*dock = new QDockWidget(tr("Attached files:"), this);
dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea );
addDockWidget(Qt::BottomDockWidgetArea, dock);
- dock->setWidget(m_attachments);
+ dock->setWidget(m_attachments);*/
}