diff --git a/shell/inc/makefile.win b/shell/inc/makefile.win index 523b42da317..eb10f331248 100644 --- a/shell/inc/makefile.win +++ b/shell/inc/makefile.win @@ -24,6 +24,8 @@ MODULE=shell EXPORTS = \ nsMenuBar.h \ nsMenuItem.h \ + nsApplicationManager.h \ + nsShellInstance.h \ $(NULL) include <$(DEPTH)\config\rules.mak> diff --git a/shell/src/nsApplicationManager.h b/shell/inc/nsApplicationManager.h similarity index 100% rename from shell/src/nsApplicationManager.h rename to shell/inc/nsApplicationManager.h diff --git a/shell/src/nsShellInstance.h b/shell/inc/nsShellInstance.h similarity index 100% rename from shell/src/nsShellInstance.h rename to shell/inc/nsShellInstance.h diff --git a/shell/src/Makefile b/shell/src/Makefile index a52a0a070a1..478bb695821 100644 --- a/shell/src/Makefile +++ b/shell/src/Makefile @@ -52,11 +52,6 @@ LCFLAGS=-I$(PUBLIC)/xpcom -I$(PUBLIC)/raptor \ REQUIRES = xpcom raptor dom js netlib shell pref -EXPORTS = \ - nsApplicationManager.h \ - nsShellInstance.h \ - $(NULL) - CPPSRCS= \ nsApplicationManager.cpp \ nsShellInstance.cpp \ diff --git a/shell/src/makefile.win b/shell/src/makefile.win index 811df53001f..f5e5e88b814 100644 --- a/shell/src/makefile.win +++ b/shell/src/makefile.win @@ -23,10 +23,6 @@ MODULE=shell DIRS = windows -EXPORTS = \ - nsApplicationManager.h \ - $(NULL) - CPPSRCS= \ nsApplicationManager.cpp \ nsShellInstance.cpp \