diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-06 03:49:05 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-06 03:49:05 +0000 |
commit | 28e7382123cbc7ef132190c6b3c29b101db38cfc (patch) | |
tree | a9d50288bd0e48228abd908a6f7bd8be06c4e7bd /x11-fm/jafm/files/patch-ad | |
parent | PR: 51521 (diff) |
As announced on 27 March 2003 in <20030328052350.GA18971@rot13.obsecurity.org>,
remove these ports that have been broken for >4 months (in many cases much
longer) with no sign of a fix.
Notes
Notes:
svn path=/head/; revision=80201
Diffstat (limited to 'x11-fm/jafm/files/patch-ad')
-rw-r--r-- | x11-fm/jafm/files/patch-ad | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/x11-fm/jafm/files/patch-ad b/x11-fm/jafm/files/patch-ad deleted file mode 100644 index b943d62fa800..000000000000 --- a/x11-fm/jafm/files/patch-ad +++ /dev/null @@ -1,37 +0,0 @@ ---- icondesk.cc.orig Sat Feb 26 19:43:45 2000 -+++ icondesk.cc Sat Feb 26 19:45:22 2000 -@@ -29,6 +29,7 @@ - #include <iostream.h> - #include <sys/types.h> - #include <sys/stat.h> -+#include <ctype.h> - #include <errno.h> - #include <dirent.h> - -@@ -526,7 +527,7 @@ - it.current()->set_embossed (false) ; - } - -- dragDropIcon->drag_drop_action (dic_list) ; // do it -+ dragDropIcon->drag_drop_action ((QListT<DeskIcon> &)dic_list) ; // do it - unHighlightDragDrop () ; - - emit signal_refresh () ; // unnecessary, but can make things look zippier -@@ -831,7 +832,7 @@ - // ok, now has a file been added? - - dir_pointer = opendir (".") ; -- while (dp = readdir (dir_pointer)) { -+ while ((dp = readdir (dir_pointer))) { - if (!strcmp (".", dp->d_name) || - !strcmp ("..", dp->d_name)) - continue ; -@@ -925,7 +926,7 @@ - QListIterator<Icon> it (*icon_list) ; - for ( ; it.current() ; ++it) { - if (it.current()->get_label() == f.fileName()) { -- it.current()->new_file_info (newf) ; -+ it.current()->new_file_info ((QFileInfo &)newf) ; - single_repaint (it.current()) ; - return ; - } |