all repos — fluxbox @ ccd408d988f097012c3b2e7d72b5ab71e6e62055

custom fork of the fluxbox windowmanager

Update include guard and added forward declaration
fluxgen fluxgen
commit

ccd408d988f097012c3b2e7d72b5ab71e6e62055

parent

c79fb75a3b9a2b8fa828d4eea517651d730a6eec

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

jump to
M src/Clientmenu.hhsrc/Clientmenu.hh

@@ -19,15 +19,15 @@ // 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. -#ifndef __Clientmenu_hh -#define __Clientmenu_hh +#ifndef _CLIENTMENU_HH_ +#define _CLIENTMENU_HH_ // forward declarations class Clientmenu; +class Workspace; #include "Basemenu.hh" -#include "Workspace.hh" -#include "fluxbox.hh" + class Clientmenu : public Basemenu {

@@ -45,5 +45,5 @@ Clientmenu(Workspace *);

}; -#endif // __Clientmenu_hh +#endif // _CLIENTMENU_HH_