Lines Matching refs:theme
34 if (info->theme)
35 free (info->theme);
225 info->theme = NULL;
244 * Get the desired theme
248 v = XGetDefault (dpy, "Xcursor", "theme");
251 info->theme = strdup (v);
254 traceOpts((T_OPTION(XCURSOR_THEME) ": %s\n", NonNull(info->theme)));
379 XcursorSetTheme (Display *dpy, const char *theme)
387 if (!theme)
388 theme = info->theme_from_config;
390 if (theme)
392 copy = strdup (theme);
398 if (info->theme)
399 free (info->theme);
400 info->theme = copy;
411 return info->theme;