From c8afe2ca9b13f571c340c5505497b0d24b4edaa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 23 Oct 2010 19:08:52 +0000 Subject: [PATCH] Fix header guard which prevented from including text_console.h along with this one. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39075 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/boot/platform/generic/text_menu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/kernel/boot/platform/generic/text_menu.h b/headers/private/kernel/boot/platform/generic/text_menu.h index dbad1035a6..2dc2e47875 100644 --- a/headers/private/kernel/boot/platform/generic/text_menu.h +++ b/headers/private/kernel/boot/platform/generic/text_menu.h @@ -3,8 +3,8 @@ * All rights reserved. Distributed under the terms of the MIT License. */ -#ifndef GENERIC_TEXT_CONSOLE_H -#define GENERIC_TEXT_CONSOLE_H +#ifndef GENERIC_TEXT_MENU_H +#define GENERIC_TEXT_MENU_H class Menu; class MenuItem; @@ -12,4 +12,4 @@ class MenuItem; void platform_generic_update_text_menu_item(Menu *menu, MenuItem *item); void platform_generic_run_text_menu(Menu *menu); -#endif /* GENERIC_TEXT_CONSOLE_H */ +#endif /* GENERIC_TEXT_MENU_H */