diff options
author | kris <kris@FreeBSD.org> | 2002-09-07 10:45:31 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-09-07 10:45:31 +0800 |
commit | c57bc05646ad29060aaf001f6e36ff089a7ce90a (patch) | |
tree | 522d4c98bf6acab582a00a33789741f192879f40 /palm/pilot-link-devel | |
parent | c65f5f41d7b92a12c44fc11917c8245cc8578297 (diff) | |
download | freebsd-ports-gnome-c57bc05646ad29060aaf001f6e36ff089a7ce90a.tar.gz freebsd-ports-gnome-c57bc05646ad29060aaf001f6e36ff089a7ce90a.tar.zst freebsd-ports-gnome-c57bc05646ad29060aaf001f6e36ff089a7ce90a.zip |
Fix compilation on -current
Submitted by: kan
PR: ports/39440
Diffstat (limited to 'palm/pilot-link-devel')
-rw-r--r-- | palm/pilot-link-devel/files/patch-ag | 11 | ||||
-rw-r--r-- | palm/pilot-link-devel/files/patch-ah | 11 | ||||
-rw-r--r-- | palm/pilot-link-devel/files/patch-ai | 11 | ||||
-rw-r--r-- | palm/pilot-link-devel/files/patch-aj | 11 | ||||
-rw-r--r-- | palm/pilot-link-devel/files/patch-ak | 12 |
5 files changed, 56 insertions, 0 deletions
diff --git a/palm/pilot-link-devel/files/patch-ag b/palm/pilot-link-devel/files/patch-ag new file mode 100644 index 000000000000..d19c4a01f169 --- /dev/null +++ b/palm/pilot-link-devel/files/patch-ag @@ -0,0 +1,11 @@ +--- ./include/pi-address.hxx.kan Mon Jun 17 16:34:24 2002 ++++ ./include/pi-address.hxx Mon Jun 17 16:35:08 2002 +@@ -33,7 +33,7 @@ + + char *_entry[19]; + +- friend addressList_t; ++ friend class addressList_t; + + address_t *_next; + diff --git a/palm/pilot-link-devel/files/patch-ah b/palm/pilot-link-devel/files/patch-ah new file mode 100644 index 000000000000..3c9d0eef7082 --- /dev/null +++ b/palm/pilot-link-devel/files/patch-ah @@ -0,0 +1,11 @@ +--- ./include/pi-datebook.hxx.kan Mon Jun 17 16:34:24 2002 ++++ ./include/pi-datebook.hxx Mon Jun 17 16:35:16 2002 +@@ -34,7 +34,7 @@ + }; + + private: +- friend appointmentList_t; ++ friend class appointmentList_t; + + tm _begin; // When the appointment begins + tm _end; // When the appointment ends diff --git a/palm/pilot-link-devel/files/patch-ai b/palm/pilot-link-devel/files/patch-ai new file mode 100644 index 000000000000..8fe6e1ef2a12 --- /dev/null +++ b/palm/pilot-link-devel/files/patch-ai @@ -0,0 +1,11 @@ +--- ./include/pi-iambicExpense.hxx.kan Mon Jun 17 16:34:24 2002 ++++ ./include/pi-iambicExpense.hxx Mon Jun 17 16:35:27 2002 +@@ -27,7 +27,7 @@ + + class iambicExpense_t : public baseApp_t + { +- friend iambicExpenseList_t; ++ friend class iambicExpenseList_t; + + short _flags; + char *_type; diff --git a/palm/pilot-link-devel/files/patch-aj b/palm/pilot-link-devel/files/patch-aj new file mode 100644 index 000000000000..cebb77b903b5 --- /dev/null +++ b/palm/pilot-link-devel/files/patch-aj @@ -0,0 +1,11 @@ +--- ./include/pi-memo.hxx.kan Mon Jun 17 16:34:24 2002 ++++ ./include/pi-memo.hxx Mon Jun 17 16:35:35 2002 +@@ -19,7 +19,7 @@ + + class memo_t : public baseApp_t + { +- friend memoList_t; ++ friend class memoList_t; + + char *_text; + int _size; diff --git a/palm/pilot-link-devel/files/patch-ak b/palm/pilot-link-devel/files/patch-ak new file mode 100644 index 000000000000..b567ccda04d7 --- /dev/null +++ b/palm/pilot-link-devel/files/patch-ak @@ -0,0 +1,12 @@ +--- ./include/pi-todo.hxx.kan Mon Jun 17 16:34:24 2002 ++++ ./include/pi-todo.hxx Mon Jun 17 16:35:43 2002 +@@ -23,7 +23,7 @@ + + class todo_t : public baseApp_t + { +- friend todoList_t; ++ friend class todoList_t; + + struct tm *_due; // Non-NULL if there is a due date + int _priority; // A priority in the range 1-5 + |