diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-09-12 13:33:12 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-09-12 13:33:12 +0000 |
commit | 25c51ac7b4d03be29c85c20156e020dd623ed6b1 (patch) | |
tree | a776d34ee413a8d92f949a8047daa3a1a39201dc /gpgwin.cpp | |
parent | fix for undefined int privkey (diff) | |
download | gpg4usb-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.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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);*/ } |