all repos — fluxbox @ ecb0d95b8fdb98137236dfb17fdf0ebe384b6c29

custom fork of the fluxbox windowmanager

Apparently, this code did the following:
  - create an empty database
  - load the rc file into a database
  - merge the empty database into the second one
  - write the result to the rc file
  - delete both databases
markt markt
commit

ecb0d95b8fdb98137236dfb17fdf0ebe384b6c29

parent

3efe68ffe30a24169492a97a9a0a883990e68b6a

2 files changed, 3 insertions(+), 12 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,11 +1,13 @@

(Format: Year/Month/Day) Changes for 1.0rc3: +*06/12/16: + * Remove useless stuff from code that reloads configuration (Mark) + fluxbox.cc *06/11/07: * Cosmetic patch from Slava Semushin tests/texturetest.cc WorkspaceCmd.cc ToolbarTheme.cc FbTk/Layer.hh FbTk/MultLayers.cc FbTk/Image.cc FbTk/TextBox.cc Shape.cc ClientPattern.cc FbWinFrame.cc - *06/10/30: * Cosmetic patch from Slava Semushin CommandDialog.cc Ewmh.cc FbCommands.cc FbAtoms.cc Xutil.cc Gnome.cc
M src/fluxbox.ccsrc/fluxbox.cc

@@ -1659,17 +1659,6 @@

void Fluxbox::real_reconfigure() { - XrmDatabase new_fluxboxrc = (XrmDatabase) 0; - - string dbfile(getRcFilename()); - XrmDatabase old_fluxboxrc = XrmGetFileDatabase(dbfile.c_str()); - - XrmMergeDatabases(new_fluxboxrc, &old_fluxboxrc); - XrmPutFileDatabase(old_fluxboxrc, dbfile.c_str()); - - if (old_fluxboxrc) - XrmDestroyDatabase(old_fluxboxrc); - ScreenList::iterator screen_it = m_screen_list.begin(); ScreenList::iterator screen_it_end = m_screen_list.end(); for (; screen_it != screen_it_end; ++screen_it)