all repos — fluxbox @ 9d5f454cc69f62b2afc91b04e0c5b1c8f4df777c

custom fork of the fluxbox windowmanager

const and ref
fluxgen fluxgen
commit

9d5f454cc69f62b2afc91b04e0c5b1c8f4df777c

parent

e42d6fc1dc49b077547f549da32bd7f7de06d0b6

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

jump to
M src/BaseDisplay.hhsrc/BaseDisplay.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: BaseDisplay.hh,v 1.28 2002/08/30 13:09:24 fluxgen Exp $ +// $Id: BaseDisplay.hh,v 1.29 2002/09/08 19:12:33 fluxgen Exp $ #ifndef BASEDISPLAY_HH #define BASEDISPLAY_HH

@@ -136,9 +136,9 @@ ~ScreenInfo();

inline BaseDisplay *getBaseDisplay() { return basedisplay; } - inline Visual *getVisual() { return visual; } - inline const Window &getRootWindow() const { return root_window; } - inline const Colormap &colormap() const { return m_colormap; } + inline Visual *getVisual() const { return visual; } + inline Window getRootWindow() const { return root_window; } + inline Colormap colormap() const { return m_colormap; } inline int getDepth() const { return depth; } inline int getScreenNumber() const { return screen_number; }