blob: 8032a61a5f1289814a8d634d667db84dd6171622 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- cliplibs/clip-gtk2/treestore.c.orig Fri Apr 15 21:47:28 2005
+++ cliplibs/clip-gtk2/treestore.c Fri Apr 15 21:48:06 2005
@@ -298,16 +298,21 @@
int
clip_GTK_TREESTORESETVALUE(ClipMachine * cm)
{
- C_object *cstree = _fetch_co_arg(cm);
- gchar *path = _clip_parc(cm, 2);
- gint column = _clip_parni(cm, 3);
- ClipVar *val = _clip_par(cm, 4);;
+ C_object *cstree;
+ gchar *path;
+ gint column;
+ ClipVar *val;
GtkTreeIter iter;
ClipArrVar *utypes;
GValue value;
gchar *str;
int j;
double d;
+
+ cstree = _fetch_co_arg(cm);
+ path = _clip_parc(cm, 2);
+ column = _clip_parni(cm, 3);
+ val = _clip_par(cm, 4);;
CHECKARG2(1, MAP_t, NUMERIC_t);CHECKCOBJ(cstree, GTK_IS_TREE_STORE(cstree->object));
CHECKARG(2, CHARACTER_t);
|