summaryrefslogtreecommitdiff
path: root/misc/kdepim3/patches
diff options
context:
space:
mode:
authormarkd <markd>2004-12-10 06:17:28 +0000
committermarkd <markd>2004-12-10 06:17:28 +0000
commit23474d6f9883a0b77b69959a36c983119d6da1f7 (patch)
treef5eb79d2ea1f974ddacc317efd1101846b34d446 /misc/kdepim3/patches
parent051b265114ec51eb08ae538146406361c3c4edff (diff)
downloadpkgsrc-23474d6f9883a0b77b69959a36c983119d6da1f7.tar.gz
Update to kde 3.3.2
Changes: * kalarm: fix KAlarm button on message windows to make it always display the main window * kmail: remember the size of the separate message window instead of using a fixed window size * kmail: gracefully handle broken connections when checking for new mail with IMAP * kmail: don't clear the readerwindow when new mail arrives in an imap folder * kmail: fix aegypten issue39 by only using the body itself as a text part if there are no body parts and we didn't get any other text so far, such as for smime opaque encrypted mails * kmail: fix the "folders not visible" problem after starting KMail when the intro is shown * kmail: fix searching when the header field in question is the first one of a message * kmail: disable wordwrap in the composer for all inline invitation mails, not just for those sent with autosending enabled * kmail: don't translate the "local" folder prefix; this fixes problems with KMail's summary plugin * kmail: fix adding attachments to inline-forwarded messages * kmail: remember the selected crypto format when saving a message as draft * kmail: hide filter actions from "Configure Toolbars" dialog; fixes crashes * kmail: fix missing filter actions after switching to the Mail component in Kontact * kmail: remove BCC coming from identity on ical invitations * kmail: grab the signature only once * kmail: fix problem with disappearing dimap folders * kmail: don't kill running mailchecks when cancelling the subscription dialog * kmail: add missing tooltip to the BCC [...] button * kmail: make sure that no signature is appended to inline invitation replies, Outlook chokes on them * kmail: don't sign or encrypt inline invitations or invitation replies * kmail: fix PGP/MIME encrypting messages which are BCC'ed * kmail: make sure that all changes in the folder properties are saved * kmail: fix uncontrolled checkboxes in the composer's attachment list * kmail: improved performance when dragging mails over the folder list * kmail: provide all reply methods and all forward methods in the separate message window * kmail: fix minor bugs in the antispam wizard * kmail: correctly end new-mail-check when an IMAP folder reports an error * kmail: fix 'kstart --iconify --windowclass kmail kmail' which allows starting KMail in the system tray * kmail: fix broken order of folders in the folder selection dropdown box * kmail: notice a manual change of the external editor command line * kmail: adjust antispam wizard to changes in bogofilter 0.93 * kmail: don't look up recipient keys during autosave * kmail: fix "Folder Menu not updated after enabling Expiration for a Folder * kmail: add support for additional antispam tools * kmail: various speed improvements * kontact: don't show empty tip of the day on startup
Diffstat (limited to 'misc/kdepim3/patches')
-rw-r--r--misc/kdepim3/patches/patch-ab26
-rw-r--r--misc/kdepim3/patches/patch-ac13
2 files changed, 0 insertions, 39 deletions
diff --git a/misc/kdepim3/patches/patch-ab b/misc/kdepim3/patches/patch-ab
deleted file mode 100644
index 2284053bb4d..00000000000
--- a/misc/kdepim3/patches/patch-ab
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-ab,v 1.7 2004/10/13 12:29:05 markd Exp $
-
---- kresources/slox/webdavhandler.cpp.orig 2004-10-03 20:44:46.000000000 +1300
-+++ kresources/slox/webdavhandler.cpp
-@@ -20,7 +20,7 @@
-
- #include "webdavhandler.h"
-
--#include <values.h>
-+#include <limits.h>
-
- #include <libkdepim/kpimprefs.h>
-
-@@ -150,9 +150,9 @@ QDateTime WebdavHandler::sloxToQDateTime
-
- if (preEpoch) {
- dt.setTime_t( 0, Qt::UTC );
-- if (ticks > MAXINT) {
-- dt = dt.addSecs(-MAXINT);
-- ticks -= MAXINT;
-+ if (ticks > INT_MAX) {
-+ dt = dt.addSecs(-INT_MAX);
-+ ticks -= INT_MAX;
- }
- dt = dt.addSecs(-((long) ticks));
- }
diff --git a/misc/kdepim3/patches/patch-ac b/misc/kdepim3/patches/patch-ac
deleted file mode 100644
index 2dfa9a7eee5..00000000000
--- a/misc/kdepim3/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2004/11/28 18:35:48 kleink Exp $
-
---- korganizer/plugins/holidays/holidays.cpp 2004/07/23 16:32:44 1.12
-+++ korganizer/plugins/holidays/holidays.cpp 2004/10/03 18:33:19 1.12.2.1
-@@ -91,7 +91,7 @@
- //static int lastYear = 0;
- int lastYear = 0;
-
-- if (mHolidayFile.isEmpty()) return QString::null;
-+ if (mHolidayFile.isEmpty() || qd.isNull()) return QString::null;
-
- //if ((lastYear == 0) || (qd.year() != lastYear)) {
- if ((yearLast == 0) || (qd.year() != yearLast)) {