diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-26 21:40:47 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-20 01:36:55 -0500 |
| commit | 2f0e73cf9d20154c5c84b6ea90e658cf44a6f0c4 (patch) | |
| tree | ad0ba99bffac6c951ab749af13460e8e5751a510 /openbox/client.c | |
| parent | 275fdf8c2a0d5c7d8f395b3269e644939e016696 (diff) | |
add functions for setting locale strings (on top of existing functions for setting utf8 strings). they are untested though! wonder if they work?
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index 041b149e..281883b1 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1978,7 +1978,7 @@ void client_update_title(ObClient *self) g_free(data); } - OBT_PROP_SETS(self->window, NET_WM_VISIBLE_NAME, visible); + OBT_PROP_SETS(self->window, NET_WM_VISIBLE_NAME, utf8, visible); self->title = visible; if (self->frame) @@ -2010,7 +2010,7 @@ void client_update_title(ObClient *self) g_free(data); } - OBT_PROP_SETS(self->window, NET_WM_VISIBLE_ICON_NAME, visible); + OBT_PROP_SETS(self->window, NET_WM_VISIBLE_ICON_NAME, utf8, visible); self->icon_title = visible; } |
