diff options
Diffstat (limited to 'WebCore/platform/PopupMenu.h')
-rw-r--r-- | WebCore/platform/PopupMenu.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/platform/PopupMenu.h b/WebCore/platform/PopupMenu.h index 449d475..4df0dcd 100644 --- a/WebCore/platform/PopupMenu.h +++ b/WebCore/platform/PopupMenu.h @@ -61,7 +61,9 @@ class wxMenu; #elif PLATFORM(CHROMIUM) #include "PopupMenuPrivate.h" #elif PLATFORM(HAIKU) -class BMenu; +namespace WebCore { +class PopupMenuHaiku; +} #endif namespace WebCore { @@ -186,7 +188,7 @@ private: #elif PLATFORM(CHROMIUM) PopupMenuPrivate p; #elif PLATFORM(HAIKU) - BMenu* m_menu; + PopupMenuHaiku* m_menu; #endif }; |