all repos — fluxbox @ bd9a39fde6cc3b43fd2cf1566ffc618359259441

custom fork of the fluxbox windowmanager

fix couple of functions that shouldn't have been marked as inline
(is/hasTransient) (Simon)
rathnor rathnor
commit

bd9a39fde6cc3b43fd2cf1566ffc618359259441

parent

54cf041b83150947d62540af2e1f2d60c6a52872

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/Window.hhsrc/Window.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: Window.hh,v 1.59 2003/04/20 02:47:15 rathnor Exp $ +// $Id: Window.hh,v 1.60 2003/04/20 15:11:48 rathnor Exp $ #ifndef WINDOW_HH #define WINDOW_HH

@@ -214,8 +214,8 @@ /**

@name accessors */ //@{ - inline bool isTransient() const; - inline bool hasTransient() const; + bool isTransient() const; + bool hasTransient() const; inline bool isManaged() const { return m_managed; } inline bool isFocused() const { return focused; } inline bool isVisible() const { return visible; }