aboutsummaryrefslogtreecommitdiffstats
path: root/attachments.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-10-14 11:53:44 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2008-10-14 11:53:44 +0000
commite537c15a200d18f06103132b57227f35ac1104b9 (patch)
tree409a2b574a4b4c16afa6f519c6cbca8361e4c1c5 /attachments.cpp
parentadded key generation to keymanagement (diff)
downloadgpg4usb-e537c15a200d18f06103132b57227f35ac1104b9.tar.gz
gpg4usb-e537c15a200d18f06103132b57227f35ac1104b9.zip
changed setStatusTip to setToolTip for actions
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@190 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'attachments.cpp')
-rw-r--r--attachments.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/attachments.cpp b/attachments.cpp
index 3979698..5f78eec 100644
--- a/attachments.cpp
+++ b/attachments.cpp
@@ -60,17 +60,17 @@ void Attachments::contextMenuEvent(QContextMenuEvent *event)
void Attachments::createActions()
{
addFileAct = new QAction(tr("Add File"), this);
- addFileAct->setStatusTip(tr("Add a file"));
+ addFileAct->setToolTip(tr("Add a file"));
addFileAct->setIcon(QIcon(iconPath + "fileopen.png"));
connect(addFileAct, SIGNAL(triggered()), this, SLOT(addFile()));
encryptAct = new QAction(tr("Encrypt"), this);
- encryptAct->setStatusTip(tr("Encrypt marked File(s)"));
+ encryptAct->setToolTip(tr("Encrypt marked File(s)"));
encryptAct->setIcon(QIcon(iconPath + "encrypted.png"));
connect(encryptAct, SIGNAL(triggered()), this, SLOT(encryptFile()));
decryptAct = new QAction(tr("Decrypt"), this);
- decryptAct->setStatusTip(tr("Decrypt marked File(s)"));
+ decryptAct->setToolTip(tr("Decrypt marked File(s)"));
decryptAct->setIcon(QIcon(iconPath + "decrypted.png"));
connect(decryptAct, SIGNAL(triggered()), this, SLOT(decryptFile()));
}