summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mailit/viewatt.cpp
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mailit/viewatt.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/mailit/viewatt.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/unsupported/mailit/viewatt.cpp b/noncore/unsupported/mailit/viewatt.cpp
index b6f5015..21885c2 100644
--- a/noncore/unsupported/mailit/viewatt.cpp
+++ b/noncore/unsupported/mailit/viewatt.cpp
@@ -20,4 +20,5 @@
#include "resource.h"
#include "viewatt.h"
+#include <qwhatsthis.h>
#include <qpe/applnk.h>
#include <qpe/mimetype.h>
@@ -32,4 +33,5 @@ ViewAtt::ViewAtt(QWidget *parent, const char *name, WFlags f)
installButton = new QAction( tr( "Install" ), Resource::loadPixmap( "exec" ), QString::null, CTRL + Key_C, this, 0 );
connect(installButton, SIGNAL(activated()), this, SLOT(install()) );
+ installButton->setWhatsThis(tr("Click here to install the attachment to your Documents"));
listView = new QListView(this, "AttView");
@@ -38,4 +40,5 @@ ViewAtt::ViewAtt(QWidget *parent, const char *name, WFlags f)
listView->addColumn( "Installed" );
setCentralWidget(listView);
+ QWhatsThis::add(listView,QWidget::tr("This is an overview about all attachments in the mail"));
}