summaryrefslogtreecommitdiff
path: root/noncore
authorharlekin <harlekin>2003-12-17 00:28:53 (UTC)
committer harlekin <harlekin>2003-12-17 00:28:53 (UTC)
commit27151bb106e2cbd7f649dae228189ebcaccd7aac (patch) (unidiff)
tree8b4bf245e609eaedb8a5a150c2d2fd68ded0a6ca /noncore
parentfb054f9c69224e14f446f405098bd5166377f58d (diff)
downloadopie-27151bb106e2cbd7f649dae228189ebcaccd7aac.zip
opie-27151bb106e2cbd7f649dae228189ebcaccd7aac.tar.gz
opie-27151bb106e2cbd7f649dae228189ebcaccd7aac.tar.bz2
only refresh mailbox view if the mail was deleted, not allways
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/net/mail/viewmail.cpp b/noncore/net/mail/viewmail.cpp
index 0947879..d86454c 100644
--- a/noncore/net/mail/viewmail.cpp
+++ b/noncore/net/mail/viewmail.cpp
@@ -184,6 +184,7 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
184 : ViewMailBase(parent, name, fl), _inLoop(false) 184 : ViewMailBase(parent, name, fl), _inLoop(false)
185{ 185{
186 m_gotBody = false; 186 m_gotBody = false;
187 deleted = false;
187 188
188 connect(reply, SIGNAL(activated()), SLOT(slotReply())); 189 connect(reply, SIGNAL(activated()), SLOT(slotReply()));
189 connect(forward, SIGNAL(activated()), SLOT(slotForward())); 190 connect(forward, SIGNAL(activated()), SLOT(slotForward()));
@@ -192,6 +193,7 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
192 attachments->setEnabled(m_gotBody); 193 attachments->setEnabled(m_gotBody);
193 connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) ); 194 connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
194 195
196
195} 197}
196 198
197void ViewMail::setText() 199void ViewMail::setText()