diff options
author | simonb <simonb> | 2006-05-07 10:08:25 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-05-07 10:08:25 (GMT) |
commit | faf043bef92338fe976e639e94d309764065b8b7 (patch) | |
tree | 6554ea89ff6064465bd605da8f640ee43212b356 /src/fluxbox.cc | |
parent | ac098b4d0f0640b2997ff674a5c1b3447b6ba09a (diff) | |
download | fluxbox_pavel-faf043bef92338fe976e639e94d309764065b8b7.zip fluxbox_pavel-faf043bef92338fe976e639e94d309764065b8b7.tar.bz2 |
more utf8 changes, notably window titles
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r-- | src/fluxbox.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index 48b67bf..fd50392 100644 --- a/src/fluxbox.cc +++ b/src/fluxbox.cc | |||
@@ -1479,7 +1479,7 @@ void Fluxbox::save_rc() { | |||
1479 | 1479 | ||
1480 | for (unsigned int workspace=0; workspace < screen->numberOfWorkspaces(); workspace++) { | 1480 | for (unsigned int workspace=0; workspace < screen->numberOfWorkspaces(); workspace++) { |
1481 | if (screen->getWorkspace(workspace)->name().size()!=0) | 1481 | if (screen->getWorkspace(workspace)->name().size()!=0) |
1482 | workspaces_string.append(screen->getWorkspace(workspace)->name()); | 1482 | workspaces_string.append(FbTk::FbStringUtil::FbStrToLocale(screen->getWorkspace(workspace)->name())); |
1483 | else | 1483 | else |
1484 | workspaces_string.append("Null"); | 1484 | workspaces_string.append("Null"); |
1485 | workspaces_string.append(","); | 1485 | workspaces_string.append(","); |