1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- added rounded pads

- initialize item_widget to NULL if not showing items or bad things happen



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5440 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-14 10:18:40 +00:00
parent dbcfae8261
commit d39ae30f6e
17 changed files with 197 additions and 24 deletions

5
obj.h
View File

@@ -104,7 +104,7 @@ struct vec {
struct sample *samples;
/* for the GUI */
GtkWidget *list_widget;
GtkWidget *list_widget; /* NULL if items aren't shown */
};
struct frame {
@@ -148,6 +148,7 @@ struct rect {
struct pad {
char *name;
struct vec *other; /* NULL if frame origin */
int rounded;
};
struct arc {
@@ -175,7 +176,7 @@ struct obj {
int dumped;
/* for the GUI */
GtkWidget *list_widget;
GtkWidget *list_widget; /* NULL if items are not shown */
};