summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mailit/viewatt.cpp
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mailit/viewatt.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mailit/viewatt.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/noncore/unsupported/mailit/viewatt.cpp b/noncore/unsupported/mailit/viewatt.cpp
index 293e137..3515ba5 100644
--- a/noncore/unsupported/mailit/viewatt.cpp
+++ b/noncore/unsupported/mailit/viewatt.cpp
@@ -18,5 +18,5 @@
**
**********************************************************************/
-#include "resource.h"
+#include <qpe/resource.h>
#include "viewatt.h"
#include <qwhatsthis.h>
@@ -34,5 +34,5 @@ ViewAtt::ViewAtt(QWidget *parent, const char *name, WFlags f)
connect(installButton, SIGNAL(activated()), this, SLOT(install()) );
installButton->setWhatsThis(tr("Click here to install the attachment to your Documents"));
-
+
listView = new QListView(this, "AttView");
listView->addColumn( tr("Attatchment") );
@@ -47,7 +47,7 @@ void ViewAtt::update(Email *mailIn, bool inbox)
QListViewItem *item;
Enclosure *ePtr;
-
-
+
+
listView->clear();
if (inbox) {
@@ -58,17 +58,17 @@ void ViewAtt::update(Email *mailIn, bool inbox)
bar->hide();
}
-
+
mail = mailIn;
for ( ePtr=mail->files.first(); ePtr != 0; ePtr=mail->files.next() ) {
-
+
QString isInstalled = tr("No");
if (ePtr->installed)
isInstalled = tr("Yes");
item = new QListViewItem(listView, ePtr->originalName, ePtr->contentType, isInstalled);
-
+
const QString& mtypeDef=(const QString&) ePtr->contentType+"/"+ePtr->contentAttribute;
-
+
MimeType mt(mtypeDef);
-
+
item->setPixmap(0, mt.pixmap());
@@ -97,5 +97,5 @@ void ViewAtt::install()
QString filename;
DocLnk d;
-
+
item = listView->selectedItem();
if (item != NULL) {
@@ -106,10 +106,10 @@ void ViewAtt::install()
selPtr = ePtr;
}
-
+
if (selPtr == NULL) {
qWarning("Internal error, file is not installed to documents");
return;
}
-
+
d.setName(selPtr->originalName);
d.setFile(selPtr->path + selPtr->name);