]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
removed some leftover printf() calls
authorewt <ewt>
Mon, 12 Jul 1999 18:47:46 +0000 (18:47 +0000)
committerewt <ewt>
Mon, 12 Jul 1999 18:47:46 +0000 (18:47 +0000)
checkboxtree.c
snackmodule.c

index b874c8dd77ea6c06ace7808fbce6ec125737151c..d6375491a9346aa124d1d71a5ce28b2fad88037e 100644 (file)
@@ -160,13 +160,9 @@ int newtCheckboxTreeAddArray(newtComponent co,
     int i, index, numIndexes;
     struct CheckboxTree * ct = co->data;
 
-    printf("here\n");
-
     numIndexes = 0;
     while (indexes[numIndexes] != NEWT_ARG_LAST) numIndexes++;
 
-    printf("there\n");
-
     if (!ct->itemlist) {
        if (numIndexes > 1) return -1;
 
index 35c422d2d68235bdbc9792ef9b60acff2aebf220..9cba457a351ca09bdb14f64e4291fce89009a5b6 100644 (file)
@@ -837,7 +837,6 @@ static PyObject * widgetCheckboxTreeAddItem(snackWidget * s, PyObject * args) {
     for (i = 0; i < len; i++) {
         o = PyTuple_GetItem(pathList, i);
        path[i] = PyInt_AsLong(o);
-       printf("found %d\n", path[i]);
     }
     path[len] = NEWT_ARG_LAST;