forgotten inlines from previous round
This commit is contained in:
parent
e1f362ae76
commit
de6d340ba3
4 changed files with 6 additions and 6 deletions
|
@ -73,7 +73,7 @@ public:
|
|||
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
|
||||
};
|
||||
|
|
|
@ -36,7 +36,7 @@ public:
|
|||
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; }
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -69,7 +69,7 @@ public:
|
|||
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 {};
|
||||
|
|
Loading…
Reference in a new issue