From 204287351e9d7f3232df3f7599625dcec1021ccd Mon Sep 17 00:00:00 2001 From: joerg Date: Tue, 26 Mar 2013 23:30:44 +0000 Subject: Forward class definitions must not use namespace :: syntax. --- misc/kdepim3/distinfo | 7 ++++++- .../patches/patch-akregator_src_akregator__part.h | 16 ++++++++++++++++ misc/kdepim3/patches/patch-akregator_src_mainwindow.h | 18 ++++++++++++++++++ misc/kdepim3/patches/patch-karm_karmstorage.h | 15 +++++++++++++++ misc/kdepim3/patches/patch-karm_task.h | 17 +++++++++++++++++ .../patches/patch-kitchensync_src_configguildap.h | 15 +++++++++++++++ 6 files changed, 87 insertions(+), 1 deletion(-) create mode 100644 misc/kdepim3/patches/patch-akregator_src_akregator__part.h create mode 100644 misc/kdepim3/patches/patch-akregator_src_mainwindow.h create mode 100644 misc/kdepim3/patches/patch-karm_karmstorage.h create mode 100644 misc/kdepim3/patches/patch-karm_task.h create mode 100644 misc/kdepim3/patches/patch-kitchensync_src_configguildap.h (limited to 'misc/kdepim3') diff --git a/misc/kdepim3/distinfo b/misc/kdepim3/distinfo index 1eb0da959c0..61e0536b4f7 100644 --- a/misc/kdepim3/distinfo +++ b/misc/kdepim3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.65 2012/12/19 17:21:48 jperkin Exp $ +$NetBSD: distinfo,v 1.66 2013/03/26 23:30:45 joerg Exp $ SHA1 (kdepim-3.5.10.tar.bz2) = 537da60fe3564ecc0ed2802e744fbf96386909a9 RMD160 (kdepim-3.5.10.tar.bz2) = 52a834dc8eb377d397404a16a09c8a59b568b305 @@ -7,6 +7,8 @@ SHA1 (patch-aa) = d9eef6f9f0301cc19897e84d632ccb3127761a4f SHA1 (patch-ab) = bc6a6bf4dd389cb3c1ae95c2a95ec9e54509e51c SHA1 (patch-ac) = d4e7b3281f81afc1e3ba383d78ab5bb64af5ee85 SHA1 (patch-ak) = cac11150a708f2f4258b9371f9aaa72b133a821d +SHA1 (patch-akregator_src_akregator__part.h) = 02d38a4cb9ef55b9110ef94ba5afe4c22bc12b4a +SHA1 (patch-akregator_src_mainwindow.h) = 6554e50d133a399b57ca9f031b4dea3c63b00149 SHA1 (patch-al) = 723424b7c39c5e0e0899b340a30e5a3f32c90a6a SHA1 (patch-am) = 29066a35ac983764a8cfa9392b9d67df581b35d3 SHA1 (patch-ao) = f3760617e77fe74d80733613a18905971ee4c5f9 @@ -16,6 +18,9 @@ SHA1 (patch-ar) = d1a2ef8db72a1156beff5f925a262c217fd6eb83 SHA1 (patch-as) = bfcde6d85ca844ebe4cff93ca0ed42deb2cefbff SHA1 (patch-at) = 670b61b45eed92c854808991e6241f29bee47554 SHA1 (patch-configure) = c25992299b78b3c45f9f5f3dfcbd5f92a4df89ac +SHA1 (patch-karm_karmstorage.h) = e30049edeef91dd365138d545bd744a4556cbbdc +SHA1 (patch-karm_task.h) = 6a87ec8898ed41f330a8b5aea556237f17dfbc68 +SHA1 (patch-kitchensync_src_configguildap.h) = a08a79894d08757fd315bec83033f49e3f41f3c6 SHA1 (patch-kmail_editorwatcher.cpp) = e66a40ea73810c59d23f52f6953c09b85d4e1deb SHA1 (patch-kmail_imapaccountbase.h) = 362d8445597c869b9ee8366a4b9a698773579512 SHA1 (patch-kmail_kmsystemtray.cpp) = 1d658e1e1ee3d17d0f38955e5399505d61fdb402 diff --git a/misc/kdepim3/patches/patch-akregator_src_akregator__part.h b/misc/kdepim3/patches/patch-akregator_src_akregator__part.h new file mode 100644 index 00000000000..54d9eefdb56 --- /dev/null +++ b/misc/kdepim3/patches/patch-akregator_src_akregator__part.h @@ -0,0 +1,16 @@ +$NetBSD: patch-akregator_src_akregator__part.h,v 1.1 2013/03/26 23:30:45 joerg Exp $ + +--- akregator/src/akregator_part.h.orig 2013-03-26 09:33:46.000000000 +0000 ++++ akregator/src/akregator_part.h +@@ -40,7 +40,10 @@ class QTimer; + class KAboutData; + class KConfig; + class KURL; +-class KParts::BrowserExtension; ++ ++namespace KParts { ++ class BrowserExtension; ++} + + namespace Akregator + { diff --git a/misc/kdepim3/patches/patch-akregator_src_mainwindow.h b/misc/kdepim3/patches/patch-akregator_src_mainwindow.h new file mode 100644 index 00000000000..b23229d70e3 --- /dev/null +++ b/misc/kdepim3/patches/patch-akregator_src_mainwindow.h @@ -0,0 +1,18 @@ +$NetBSD: patch-akregator_src_mainwindow.h,v 1.1 2013/03/26 23:30:45 joerg Exp $ + +--- akregator/src/mainwindow.h.orig 2013-03-26 09:32:12.000000000 +0000 ++++ akregator/src/mainwindow.h +@@ -39,8 +39,11 @@ class KActionCollection; + class KToggleAction; + class KSqueezedTextLabel; + class KProgress; +-class KParts::BrowserExtension; +-class KParts::PartManager; ++ ++namespace KParts { ++ class BrowserExtension; ++ class PartManager; ++} + + namespace KPIM + { diff --git a/misc/kdepim3/patches/patch-karm_karmstorage.h b/misc/kdepim3/patches/patch-karm_karmstorage.h new file mode 100644 index 00000000000..343ce2e998f --- /dev/null +++ b/misc/kdepim3/patches/patch-karm_karmstorage.h @@ -0,0 +1,15 @@ +$NetBSD: patch-karm_karmstorage.h,v 1.1 2013/03/26 23:30:45 joerg Exp $ + +--- karm/karmstorage.h.orig 2013-03-26 10:10:20.000000000 +0000 ++++ karm/karmstorage.h +@@ -41,7 +41,9 @@ class Preferences; + class Task; + class TaskView; + class HistoryEvent; +-class KCal::Todo; ++namespace KCal { ++ class Todo; ++} + + /** + * Singleton to store/retrieve KArm data to/from persistent storage. diff --git a/misc/kdepim3/patches/patch-karm_task.h b/misc/kdepim3/patches/patch-karm_task.h new file mode 100644 index 00000000000..b8ca38861d1 --- /dev/null +++ b/misc/kdepim3/patches/patch-karm_task.h @@ -0,0 +1,17 @@ +$NetBSD: patch-karm_task.h,v 1.1 2013/03/26 23:30:46 joerg Exp $ + +--- karm/task.h.orig 2013-03-26 10:11:16.000000000 +0000 ++++ karm/task.h +@@ -21,8 +21,10 @@ class QString; + class KarmStorage; + + class QTimer; +-class KCal::Incidence; +-class KCal::Todo; ++namespace KCal { ++ class Incidence; ++ class Todo; ++} + class QObject; + class QPixmap; + diff --git a/misc/kdepim3/patches/patch-kitchensync_src_configguildap.h b/misc/kdepim3/patches/patch-kitchensync_src_configguildap.h new file mode 100644 index 00000000000..deb6fcbf4e6 --- /dev/null +++ b/misc/kdepim3/patches/patch-kitchensync_src_configguildap.h @@ -0,0 +1,15 @@ +$NetBSD: patch-kitchensync_src_configguildap.h,v 1.1 2013/03/26 23:30:46 joerg Exp $ + +--- kitchensync/src/configguildap.h.orig 2013-03-26 09:28:47.000000000 +0000 ++++ kitchensync/src/configguildap.h +@@ -29,7 +29,9 @@ class QCheckBox; + class QLabel; + class QSpinBox; + +-class KABC::LdapConfigWidget; ++namespace KABC { ++class LdapConfigWidget; ++} + class KComboBox; + class KLineEdit; + -- cgit v1.2.3