X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fconfig.cc;h=d464ebbc5234a72cf3c59419dbee4f7c728d198b;hb=213df2814b002da2c5f324210d44559f9d651e21;hp=e5ec74d49df7e2adeead2341db9f42cfabf6525d;hpb=0b466d7136f0dbfbd3cf82323aaf21a4b947f67a;p=chaz%2Fopenbox diff --git a/src/config.cc b/src/config.cc index e5ec74d4..d464ebbc 100644 --- a/src/config.cc +++ b/src/config.cc @@ -55,8 +55,7 @@ Config::Config() PyObject *obmodule = PyImport_AddModule("config"); obdict = PyModule_GetDict(obmodule); - std::vector names; - python_get_stringlist("DESKTOP_NAMES", &names); + python_get_stringlist("DESKTOP_NAMES", &desktop_names); python_get_string("THEME", &theme); @@ -69,27 +68,10 @@ Config::Config() drag_threshold = 3; if (!python_get_long("NUMBER_OF_DESKTOPS", (long*)&num_desktops)) num_desktops = 1; - - otk::ustring s; - long w, h; - if (python_get_string("DEFAULT_ICON", &s) && s.bytes() > 2 && - python_get_long("DEFAULT_ICON_WIDTH", &w) && - python_get_long("DEFAULT_ICON_HEIGHT", &h) && - (unsigned)(w * h) == s.bytes() / sizeof(unsigned long)) { - default_icon = new unsigned long[s.bytes() / sizeof(unsigned long) + 2]; - default_icon[0] = w; - default_icon[1] = h; - memcpy(default_icon + 2, s.data(), s.bytes()); - } else { - default_icon = 0; - } - - icon_length = s.bytes(); } Config::~Config() { - if (default_icon) delete [] default_icon; } }