all repos — fluxbox @ 9a8eee45ea211fce88ec9bf5dba2d7cfe474d8ad

custom fork of the fluxbox windowmanager

from char to std string in getRcFilename and inherit FbAtom
fluxgen fluxgen
commit

9a8eee45ea211fce88ec9bf5dba2d7cfe474d8ad

parent

1f61bca0a9e969d9e634696c73768a3880c36f4d

1 files changed, 5 insertions(+), 4 deletions(-)

jump to
M src/fluxbox.hhsrc/fluxbox.hh

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: fluxbox.hh,v 1.25 2002/08/14 00:00:16 fluxgen Exp $ +// $Id: fluxbox.hh,v 1.26 2002/08/14 23:01:05 fluxgen Exp $ #ifndef FLUXBOX_HH #define FLUXBOX_HH

@@ -41,6 +41,7 @@ #include "Slit.hh"

#endif // SLIT #include "SignalHandler.hh" +#include "FbAtoms.hh" #include <X11/Xlib.h> #include <X11/Xresource.h>

@@ -67,7 +68,8 @@ /**

main class for the window manager. singleton type */ -class Fluxbox : public BaseDisplay, public TimeoutHandler, public FbTk::SignalHandler::EventHandler { +class Fluxbox : public BaseDisplay, public TimeoutHandler, public FbTk::SignalHandler::EventHandler, + public FbAtoms { public: Fluxbox(int argc, char **argv, const char * dpy_name= 0, const char *rc = 0); virtual ~Fluxbox();

@@ -242,8 +244,7 @@ std::string slitlist_path;

//default arguments for titlebar left and right static Fluxbox::Titlebar m_titlebar_left[], m_titlebar_right[]; -protected: - char *getRcFilename(); + std::string getRcFilename(); void getDefaultDataFilename(char *, std::string &); void load_rc();