all repos — fluxbox @ de6d340ba3a1a64ee46e6562d0bdab062cb92a1e

custom fork of the fluxbox windowmanager

forgotten inlines from previous round
Mathias Gumz akira at fluxbox dot org
commit

de6d340ba3a1a64ee46e6562d0bdab062cb92a1e

parent

e1f362ae764884a4cd1e1673292cb37d5a85f89c

4 files changed, 6 insertions(+), 6 deletions(-)

jump to
M src/FbTk/FbDrawable.hhsrc/FbTk/FbDrawable.hh

@@ -73,7 +73,7 @@ virtual Drawable drawable() const = 0;

virtual unsigned int width() const = 0; virtual unsigned int height() const = 0; virtual unsigned int depth() const = 0; - static inline Display *display() { return s_display; } + static Display *display() { return s_display; } protected: static Display *s_display; // display connection // display connection };
M src/FbTk/MenuSeparator.hhsrc/FbTk/MenuSeparator.hh

@@ -36,7 +36,7 @@ const MenuTheme &theme,

bool highlight, bool draw_foreground, bool draw_background, int x, int y, unsigned int width, unsigned int height) const; - virtual inline bool isEnabled() const { return false; } + virtual bool isEnabled() const { return false; } };
M src/FbTk/TypeAhead.hhsrc/FbTk/TypeAhead.hh

@@ -32,7 +32,7 @@ template <typename Items, typename Item_Type>

class TypeAhead { #if 0 -a class template can't be split into separate interface + implementation files, an interface summary is given here: +// a class template can't be split into separate interface + implementation files, an interface summary is given here: public: void init(Items const &items);
M src/ToolbarItem.hhsrc/ToolbarItem.hh

@@ -32,7 +32,7 @@ /// An item in the toolbar that has either fixed or relative size to the toolbar

class ToolbarItem { public: /// size type in the toolbar - enum Type { + enum Type { FIXED, ///< the size can not be changed RELATIVE, ///< the size can be changed SQUARE ///< the size is fixed relative to the parent, and in both dimensions

@@ -54,7 +54,7 @@ virtual unsigned int borderWidth() const = 0;

// some items might be there, but effectively empty, so shouldn't appear virtual bool active() { return true; } - // Tools should NOT listen to theme changes - they'll get notified by + // Tools should NOT listen to theme changes - they'll get notified by // the toolbar instead. Otherwise there are ordering problems. virtual void renderTheme(unsigned char alpha) = 0;

@@ -69,7 +69,7 @@

void setType(Type type) { m_type = type; } Type type() const { return m_type; } - inline FbTk::Orientation orientation() const { return m_orientation; } + FbTk::Orientation orientation() const { return m_orientation; } virtual void setOrientation(FbTk::Orientation orient) { m_orientation = orient; } class ToolbarItemSubject : public FbTk::Subject {};