mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
declaring ALL the base classes public since by default some compilers make
them private. r= hyatt@netscape.com
This commit is contained in:
parent
4f851be879
commit
4f4a1ab11f
@ -33,7 +33,7 @@ class nsIPresContext;
|
||||
|
||||
/** editor Implementation of the DragListener interface
|
||||
*/
|
||||
class nsMenuBarListener : public nsIDOMKeyListener, nsIDOMFocusListener, nsIDOMMouseListener
|
||||
class nsMenuBarListener : public nsIDOMKeyListener, public nsIDOMFocusListener, public nsIDOMMouseListener
|
||||
{
|
||||
public:
|
||||
/** default constructor
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "nsISelfScrollingFrame.h"
|
||||
#include "nsITreeFrame.h"
|
||||
|
||||
class nsTreeOuterFrame : public nsTableOuterFrame, nsIBox, nsISelfScrollingFrame
|
||||
class nsTreeOuterFrame : public nsTableOuterFrame, public nsIBox, public nsISelfScrollingFrame
|
||||
{
|
||||
public:
|
||||
friend nsresult NS_NewTreeOuterFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame);
|
||||
|
Loading…
Reference in New Issue
Block a user