aboutsummaryrefslogtreecommitdiff
path: root/cad/oregano/files
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-12-14 18:45:40 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-12-14 18:45:40 +0000
commitcce0ac148c41ea91e8c6d1511014b90aa9cf7f69 (patch)
tree2c1c319258b398172d64b3180c16c092c5d1a953 /cad/oregano/files
parent18fe896fb1900abf7d6e200190a8bfee74d99342 (diff)
Notes
Diffstat (limited to 'cad/oregano/files')
-rw-r--r--cad/oregano/files/patch-src__engines__netlist.c13
-rw-r--r--cad/oregano/files/patch-src__model__node-store.c24
-rw-r--r--cad/oregano/files/patch-src__print.c10
-rw-r--r--cad/oregano/files/patch-src__schematic-view.c19
-rw-r--r--cad/oregano/files/patch-src__sheet__wire-item.c12
5 files changed, 0 insertions, 78 deletions
diff --git a/cad/oregano/files/patch-src__engines__netlist.c b/cad/oregano/files/patch-src__engines__netlist.c
deleted file mode 100644
index 60d280468165..000000000000
--- a/cad/oregano/files/patch-src__engines__netlist.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/engines/netlist.c.orig Sat Sep 30 13:47:23 2006
-+++ src/engines/netlist.c Sat Sep 30 21:26:42 2006
-@@ -628,9 +628,9 @@
- GList *parts;
- GList *p;
- gchar *prop, *type, *ac;
-- parts = node_store_get_parts (store);
- GString *out;
- gchar *ret;
-+ parts = node_store_get_parts (store);
-
- out = g_string_new ("");
-
diff --git a/cad/oregano/files/patch-src__model__node-store.c b/cad/oregano/files/patch-src__model__node-store.c
deleted file mode 100644
index d4a39e52440a..000000000000
--- a/cad/oregano/files/patch-src__model__node-store.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/model/node-store.c.orig Wed May 24 14:16:30 2006
-+++ src/model/node-store.c Wed May 24 19:07:00 2006
-@@ -432,9 +432,9 @@
- SheetPos w_pos, w_length;
- gboolean can_join;
- GSList *nodes;
-+ gdouble _x1, _x2, _y1, _y2;
-
- wire_get_pos_and_length (ipoint->wire, &w_pos, &w_length);
-- gdouble _x1, _x2, _y1, _y2;
-
- _x1 = w_pos.x;
- _y1 = w_pos.y;
-@@ -481,9 +481,9 @@
- SheetPos w_pos, w_length;
- gboolean can_join;
- GSList *nodes;
-+ gdouble _x1, _x2, _y1, _y2;
-
- wire_get_pos_and_length (ipoint->wire, &w_pos, &w_length);
-- gdouble _x1, _x2, _y1, _y2;
-
- _x1 = w_pos.x;
- _y1 = w_pos.y;
diff --git a/cad/oregano/files/patch-src__print.c b/cad/oregano/files/patch-src__print.c
deleted file mode 100644
index 5c84977472c0..000000000000
--- a/cad/oregano/files/patch-src__print.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/print.c.orig Thu Mar 29 10:30:23 2007
-+++ src/print.c Thu Mar 29 10:30:26 2007
-@@ -31,6 +31,7 @@
- #include <math.h>
- #include <gnome.h>
- #include <libgnomeprint/gnome-print.h>
-+#include <libgnomeprint/gnome-print-paper.h>
- #include "schematic.h"
- #include "schematic-view.h"
- #include "sheet.h"
diff --git a/cad/oregano/files/patch-src__schematic-view.c b/cad/oregano/files/patch-src__schematic-view.c
deleted file mode 100644
index c7fd3c690120..000000000000
--- a/cad/oregano/files/patch-src__schematic-view.c
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/schematic-view.c.orig Wed May 24 14:16:30 2006
-+++ src/schematic-view.c Wed May 24 21:39:29 2006
-@@ -1849,6 +1849,7 @@
- int i=0;
- while (files[i]) {
- Schematic *new_sm = NULL;
-+ gchar *fname = files[i];
- int l = strlen(files[i]);
- /* Algo queda mal al final luego del split, agrego un \0 */
- files[i][l-1] = '\0';
-@@ -1858,8 +1859,6 @@
- i++;
- continue;
- }
--
-- gchar *fname = files[i];
-
- new_sm = schematic_read (fname, &error);
- if (new_sm) {
diff --git a/cad/oregano/files/patch-src__sheet__wire-item.c b/cad/oregano/files/patch-src__sheet__wire-item.c
deleted file mode 100644
index e6c85906d885..000000000000
--- a/cad/oregano/files/patch-src__sheet__wire-item.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/sheet/wire-item.c.orig Wed May 24 14:16:30 2006
-+++ src/sheet/wire-item.c Wed May 24 21:13:43 2006
-@@ -363,8 +363,8 @@
- case GDK_BUTTON_PRESS:
- switch (event->button.button) {
- case 1: {
-- g_signal_stop_emission_by_name (G_OBJECT (sheet), "event");
- double x, y;
-+ g_signal_stop_emission_by_name (G_OBJECT (sheet), "event");
- x = event->button.x - start_pos.x;
- y = event->button.y - start_pos.y;
- if ((x > -RESIZER_SIZE) && (x < RESIZER_SIZE) &&