From: Dana Jansens Date: Fri, 14 Feb 2003 08:20:54 +0000 (+0000) Subject: kill debug prints X-Git-Tag: openbox-3_0-rc1-RELEASE~2108 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=0b466d7136f0dbfbd3cf82323aaf21a4b947f67a;p=mikachu%2Fopenbox.git kill debug prints --- diff --git a/src/config.cc b/src/config.cc index 79250e3d..e5ec74d4 100644 --- a/src/config.cc +++ b/src/config.cc @@ -28,7 +28,6 @@ bool python_get_string(const char *name, otk::ustring *value) PyObject *val = PyDict_GetItemString(obdict, const_cast(name)); if (!(val && PyString_Check(val))) return false; - printf("PYLENGTH %d\n", PyString_Size(val)); std::string temp(PyString_AsString(val), PyString_Size(val)); *value = temp; return true; @@ -81,13 +80,11 @@ Config::Config() default_icon[0] = w; default_icon[1] = h; memcpy(default_icon + 2, s.data(), s.bytes()); - printf("%d %d\n", default_icon[0], default_icon[1]); } else { default_icon = 0; } icon_length = s.bytes(); - printf("LENGTH %d\n", icon_length); } Config::~Config()