From e537c15a200d18f06103132b57227f35ac1104b9 Mon Sep 17 00:00:00 2001 From: nils Date: Tue, 14 Oct 2008 11:53:44 +0000 Subject: changed setStatusTip to setToolTip for actions git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@190 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- attachments.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'attachments.cpp') 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())); } -- cgit v1.2.3