~ubuntu-branches/ubuntu/vivid/blackbox/vivid

« back to all changes in this revision

Viewing changes to src/Iconmenu.hh

  • Committer: Bazaar Package Importer
  • Author(s): Jesus Climent
  • Date: 2003-10-15 15:38:53 UTC
  • Revision ID: james.westby@ubuntu.com-20031015153853-c08p60n6fes52hs1
Tags: 0.65.0-1.2
* Non Maintainer Upload
* Patch by Matt Kraai to solve FTBFS: Closes: #208814.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: C++; indent-tabs-mode: nil; -*-
1
2
// Icon.hh for Blackbox - an X11 Window manager
2
 
// Copyright (c) 2001 Sean 'Shaleh' Perry <shaleh@debian.org>
 
3
// Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry <shaleh@debian.org>
3
4
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
4
5
//
5
6
// Permission is hereby granted, free of charge, to any person obtaining a
31
32
 
32
33
class Iconmenu : public Basemenu {
33
34
private:
34
 
  BScreen *screen;
 
35
  Iconmenu(const Iconmenu&);
 
36
  Iconmenu& operator=(const Iconmenu&);
35
37
 
36
38
protected:
37
 
  virtual void itemSelected(int, int);
 
39
  virtual void itemSelected(int button, unsigned int index);
38
40
 
39
41
public:
40
 
  Iconmenu(BScreen *);
 
42
  Iconmenu(BScreen *scrn);
41
43
};
42
44
 
43
45