summaryrefslogtreecommitdiff
path: root/sysutils/bbapm/files
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
commitdf3e7e93b8317ece24fbe7d0c9e4aa1ebb0feca0 (patch)
tree1d9ecedb74d255866c8e1e5df9db0f2739a8ba66 /sysutils/bbapm/files
parentc31f9d6cf28e3aa831ff2390ee3ab6ea031dbc76 (diff)
Diffstat (limited to 'sysutils/bbapm/files')
-rw-r--r--sysutils/bbapm/files/patch-Baseresource.cc12
-rw-r--r--sysutils/bbapm/files/patch-Basewindow.cc16
-rw-r--r--sysutils/bbapm/files/patch-Image.cc36
-rw-r--r--sysutils/bbapm/files/patch-Image.hh24
-rw-r--r--sysutils/bbapm/files/patch-LinkedList.hh11
-rw-r--r--sysutils/bbapm/files/patch-bbapm.cc11
-rw-r--r--sysutils/bbapm/files/patch-resource.cc11
7 files changed, 0 insertions, 121 deletions
diff --git a/sysutils/bbapm/files/patch-Baseresource.cc b/sysutils/bbapm/files/patch-Baseresource.cc
deleted file mode 100644
index d757e836f960..000000000000
--- a/sysutils/bbapm/files/patch-Baseresource.cc
+++ /dev/null
@@ -1,12 +0,0 @@
---- Baseresource.cc.orig Mon Aug 16 10:40:24 1999
-+++ Baseresource.cc Sat Aug 4 20:52:40 2001
-@@ -27,6 +27,9 @@
- {
- bbtool = toolwindow;
-
-+ style.conf_filename = NULL;
-+ style.style_filename = NULL;
-+
- if (bbtool->default_config) {
- ReadDefaultResource();
- ResourceType = DEFAULT;
diff --git a/sysutils/bbapm/files/patch-Basewindow.cc b/sysutils/bbapm/files/patch-Basewindow.cc
deleted file mode 100644
index 96fdc2d6d6be..000000000000
--- a/sysutils/bbapm/files/patch-Basewindow.cc
+++ /dev/null
@@ -1,16 +0,0 @@
---- Basewindow.cc.orig Sun Aug 15 07:43:55 1999
-+++ Basewindow.cc Sat Aug 4 20:52:40 2001
-@@ -23,6 +23,13 @@
-
- Basewindow::Basewindow(int argc,char **argv)
- {
-+ dpy = NULL;
-+ v = NULL;
-+ image_control = NULL;
-+ nobb_filename = NULL;
-+ bbconfig_filename = NULL;
-+ spooldir = NULL;
-+
- display_name=NULL;
- config_filename=NULL;
- position=NULL;
diff --git a/sysutils/bbapm/files/patch-Image.cc b/sysutils/bbapm/files/patch-Image.cc
deleted file mode 100644
index 23455a41ff98..000000000000
--- a/sysutils/bbapm/files/patch-Image.cc
+++ /dev/null
@@ -1,36 +0,0 @@
---- Image.cc.orig Sun Aug 15 07:43:55 1999
-+++ Image.cc Sat Aug 4 20:52:40 2001
-@@ -50,6 +50,17 @@
- BImage::BImage(BImageControl *c, unsigned int w, unsigned int h) {
- control = c;
-
-+ colors = NULL;
-+ red = NULL;
-+ green = NULL;
-+ blue = NULL;
-+ tr = NULL;
-+ tg = NULL;
-+ tb = NULL;
-+
-+ from.allocated = 0;
-+ to.allocated = 0;
-+
- width = ((signed) w > 0) ? w : 1;
- height = ((signed) h > 0) ? h : 1;
-
-@@ -843,7 +854,14 @@
- window = blackbox->getRootWindow();
- screen_number = blackbox->getScreenNumber();
-
-- colors = 0;
-+ colors = NULL;
-+ red_err = NULL;
-+ green_err = NULL;
-+ blue_err = NULL;
-+ next_red_err = NULL;
-+ next_green_err = NULL;
-+ next_blue_err = NULL;
-+ cache = NULL;
- colors_per_channel = ncolors = 0;
-
- int count;
diff --git a/sysutils/bbapm/files/patch-Image.hh b/sysutils/bbapm/files/patch-Image.hh
deleted file mode 100644
index dec4084d89d4..000000000000
--- a/sysutils/bbapm/files/patch-Image.hh
+++ /dev/null
@@ -1,24 +0,0 @@
---- Image.hh.orig Sun Aug 15 07:43:55 1999
-+++ Image.hh Sat Aug 4 20:52:40 2001
-@@ -35,11 +35,21 @@
- class BImage;
- class BImageControl;
-
-+#if 0
- typedef struct BColor {
- int allocated;
- unsigned char red, green, blue;
- unsigned long pixel;
- };
-+#else
-+class BColor {
-+public:
-+ int allocated;
-+ unsigned char red, green, blue;
-+ unsigned long pixel;
-+ BColor::BColor() { allocated = False; }
-+};
-+#endif
-
- typedef struct BTexture {
- BColor color, colorTo, hiColor, loColor;
diff --git a/sysutils/bbapm/files/patch-LinkedList.hh b/sysutils/bbapm/files/patch-LinkedList.hh
deleted file mode 100644
index 24ff55576575..000000000000
--- a/sysutils/bbapm/files/patch-LinkedList.hh
+++ /dev/null
@@ -1,11 +0,0 @@
---- LinkedList.hh.orig Fri Sep 6 20:14:52 2002
-+++ LinkedList.hh Fri Sep 6 20:14:58 2002
-@@ -63,7 +63,7 @@
- int elements;
- __llist_node *_first, *_last;
-
-- friend __llist_iterator;
-+ friend class __llist_iterator;
-
-
- protected:
diff --git a/sysutils/bbapm/files/patch-bbapm.cc b/sysutils/bbapm/files/patch-bbapm.cc
deleted file mode 100644
index 63c97aee5680..000000000000
--- a/sysutils/bbapm/files/patch-bbapm.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- bbapm.cc.orig Fri Dec 7 19:42:46 2001
-+++ bbapm.cc Fri Dec 7 19:42:57 2001
-@@ -28,6 +28,9 @@
- ToolWindow::ToolWindow(int argc, char **argv):
- Basewindow(argc, argv)
- {
-+ resource = NULL;
-+ load = NULL;
-+
- close_app = False;
- broken = False;
diff --git a/sysutils/bbapm/files/patch-resource.cc b/sysutils/bbapm/files/patch-resource.cc
deleted file mode 100644
index 07594d3c7832..000000000000
--- a/sysutils/bbapm/files/patch-resource.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- resource.cc.orig Fri Dec 7 19:42:46 2001
-+++ resource.cc Fri Dec 7 19:42:57 2001
-@@ -28,6 +28,9 @@
- Resource::Resource(ToolWindow * toolwindow):
- BaseResource(toolwindow)
- {
-+ frame.font = NULL;
-+ label.font = NULL;
-+
- Load();
- }