]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menu.cpp
Borland makefile fixes
[wxWidgets.git] / src / msw / menu.cpp
index a24f0f419de9050c2fc17c1070ea7824c149404d..77923bb06a1e5652a8f73a59dbbabac05f417530 100644 (file)
@@ -341,6 +341,7 @@ void wxMenu::SetTitle(const wxString& label)
     }
   }
 
+#ifndef __WIN16__
   // put the title string in bold face
   if ( !m_title.IsEmpty() )
   {
@@ -354,6 +355,7 @@ void wxMenu::SetTitle(const wxString& label)
       wxLogLastError("SetMenuItemInfo");
     }
   }
+#endif
 }
 
 const wxString wxMenu::GetTitle() const
@@ -560,7 +562,16 @@ bool wxWindow::PopupMenu(wxMenu *menu, int x, int y)
 wxMenuBar::wxMenuBar()
 {
   m_eventHandler = this;
+  m_menuCount = 0;
+  m_menus = NULL;
+  m_titles = NULL;
+  m_menuBarFrame = NULL;
+  m_hMenu = 0;
+}
 
+wxMenuBar::wxMenuBar( long WXUNUSED(style) )
+{
+  m_eventHandler = this;
   m_menuCount = 0;
   m_menus = NULL;
   m_titles = NULL;