summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2010-11-29 13:41:51 +0100
committerMathias Bauer <mba@openoffice.org>2010-11-29 13:41:51 +0100
commitc926c86c914574ec94e809c14392c86e2c54cb04 (patch)
tree98f04e7264b203c32288ee7b7ff5c2e544ec440c
parentdac3d8ca475971249a0015cb55207688055b41f5 (diff)
CWS gnumake2: fix some build breakers in svtools, xmloff and framework
-rw-r--r--framework/Library_fwk.mk1
-rw-r--r--framework/Library_fwl.mk2
-rw-r--r--framework/inc/services/layoutmanager.hxx1
-rw-r--r--framework/source/classes/fwktabwindow.cxx6
-rwxr-xr-xframework/source/layoutmanager/layoutmanager.cxx2
-rwxr-xr-xframework/source/layoutmanager/toolbarlayoutmanager.hxx2
-rw-r--r--framework/source/register/registerservices.cxx4
-rw-r--r--framework/source/register/registertemp.cxx2
-rw-r--r--xmloff/Library_xo.mk4
-rwxr-xr-xxmloff/inc/form_handler_factory.hxx (renamed from xmloff/source/forms/form_handler_factory.hxx)0
-rwxr-xr-xxmloff/inc/property_handler.hxx (renamed from xmloff/source/forms/property_handler.hxx)0
-rwxr-xr-xxmloff/inc/property_ids.hxx (renamed from xmloff/source/forms/property_ids.hxx)0
-rw-r--r--xmloff/prj/build.lst2
-rw-r--r--[-rwxr-xr-x]xmloff/qa/unoapi/makefile.mk (renamed from xmloff/source/forms/handler/makefile.mk)47
-rwxr-xr-xxmloff/source/forms/property_meta_data.cxx2
15 files changed, 34 insertions, 41 deletions
diff --git a/framework/Library_fwk.mk b/framework/Library_fwk.mk
index c6bc71fadd6d..50c16b83b42a 100644
--- a/framework/Library_fwk.mk
+++ b/framework/Library_fwk.mk
@@ -71,6 +71,7 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
framework/source/accelerators/storageholder \
framework/source/classes/droptargetlistener \
framework/source/classes/framecontainer \
+ framework/source/classes/fwktabwindow \
framework/source/classes/menumanager \
framework/source/classes/taskcreator \
framework/source/constant/containerquery \
diff --git a/framework/Library_fwl.mk b/framework/Library_fwl.mk
index 1169bb750883..d2002115eaf0 100644
--- a/framework/Library_fwl.mk
+++ b/framework/Library_fwl.mk
@@ -57,7 +57,6 @@ $(eval $(call gb_Library_add_linked_libs,fwl,\
))
$(eval $(call gb_Library_add_exception_objects,fwl,\
- framework/source/classes/fwktabwindow \
framework/source/classes/fwlresid \
framework/source/dispatch/mailtodispatcher \
framework/source/dispatch/oxt_handler \
@@ -69,7 +68,6 @@ $(eval $(call gb_Library_add_exception_objects,fwl,\
framework/source/services/dispatchhelper \
framework/source/services/license \
framework/source/services/mediatypedetectionhelper \
- framework/source/services/tabwindowservice \
framework/source/services/uriabbreviation \
framework/source/uielement/fontmenucontroller \
framework/source/uielement/fontsizemenucontroller \
diff --git a/framework/inc/services/layoutmanager.hxx b/framework/inc/services/layoutmanager.hxx
index 7fcbf4398efe..0110a0b40b9e 100644
--- a/framework/inc/services/layoutmanager.hxx
+++ b/framework/inc/services/layoutmanager.hxx
@@ -53,7 +53,6 @@
#include <uielement/menubarmanager.hxx>
#include <uiconfiguration/windowstateconfiguration.hxx>
#include <framework/addonsoptions.hxx>
-#include <classes/addonsoptions.hxx>
#include <uielement/panelwindow.hxx>
#include <uielement/uielement.hxx>
#include <helper/ilayoutnotifications.hxx>
diff --git a/framework/source/classes/fwktabwindow.cxx b/framework/source/classes/fwktabwindow.cxx
index aa550807460c..a441f251a592 100644
--- a/framework/source/classes/fwktabwindow.cxx
+++ b/framework/source/classes/fwktabwindow.cxx
@@ -30,7 +30,7 @@
#include <classes/fwktabwindow.hxx>
#include "framework.hrc"
-#include <classes/fwlresid.hxx>
+#include <classes/fwkresid.hxx>
#include <com/sun/star/awt/PosSize.hpp>
#include <com/sun/star/awt/XContainerWindowEventHandler.hpp>
@@ -205,9 +205,9 @@ void FwkTabPage::Resize()
FwkTabWindow::FwkTabWindow( Window* pParent ) :
- Window( pParent, FwlResId( WIN_TABWINDOW ) ),
+ Window( pParent, FwkResId( WIN_TABWINDOW ) ),
- m_aTabCtrl ( this, FwlResId( TC_TABCONTROL ) )
+ m_aTabCtrl ( this, FwkResId( TC_TABCONTROL ) )
{
uno::Reference < lang::XMultiServiceFactory > xFactory( ::comphelper::getProcessServiceFactory() );
m_xWinProvider = uno::Reference < awt::XContainerWindowProvider >(
diff --git a/framework/source/layoutmanager/layoutmanager.cxx b/framework/source/layoutmanager/layoutmanager.cxx
index d726d574d76d..4106e9d67353 100755
--- a/framework/source/layoutmanager/layoutmanager.cxx
+++ b/framework/source/layoutmanager/layoutmanager.cxx
@@ -39,7 +39,7 @@
#include <services.h>
#include <framework/sfxhelperfunctions.hxx>
-#include <classes/sfxhelperfunctions.hxx>
+#include <framework/sfxhelperfunctions.hxx>
#include <uielement/menubarwrapper.hxx>
#include <framework/addonsoptions.hxx>
#include <uiconfiguration/windowstateconfiguration.hxx>
diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.hxx b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
index baf6f088cc2e..df6b36020f93 100755
--- a/framework/source/layoutmanager/toolbarlayoutmanager.hxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
@@ -52,7 +52,7 @@
#include <stdtypes.h>
#include <uiconfiguration/globalsettings.hxx>
#include <uiconfiguration/windowstateconfiguration.hxx>
-#include <classes/addonsoptions.hxx>
+#include <framework/addonsoptions.hxx>
#include <uielement/uielement.hxx>
#include <helper/ilayoutnotifications.hxx>
diff --git a/framework/source/register/registerservices.cxx b/framework/source/register/registerservices.cxx
index 4f078d9ab50d..fe9dfe2ee573 100644
--- a/framework/source/register/registerservices.cxx
+++ b/framework/source/register/registerservices.cxx
@@ -54,7 +54,7 @@
=================================================================================================================*/
#include <services/urltransformer.hxx>
#include <services/desktop.hxx>
-//#include <services/tabwindowservice.hxx>
+#include <services/tabwindowservice.hxx>
#include <services/frame.hxx>
#include <services/modulemanager.hxx>
//#include <dispatch/oxt_handler.hxx>
@@ -169,7 +169,7 @@ COMPONENTGETFACTORY ( IFFACTORY( ::framework::URLTransformer
IFFACTORY( ::framework::LangSelectionStatusbarController ) else
//IFFACTORY( ::framework::LanguageSelectionMenuController ) else
IFFACTORY( ::framework::WindowContentFactoryManager ) else
- //IFFACTORY( ::framework::TabWindowService ) else
+ IFFACTORY( ::framework::TabWindowService ) else
IFFACTORY( ::framework::SubstitutePathVariables ) else
IFFACTORY( ::framework::PathSettings )
)
diff --git a/framework/source/register/registertemp.cxx b/framework/source/register/registertemp.cxx
index 111b3550559d..59444093d53e 100644
--- a/framework/source/register/registertemp.cxx
+++ b/framework/source/register/registertemp.cxx
@@ -65,7 +65,6 @@
#include <uielement/simpletextstatusbarcontroller.hxx>
#include <uielement/logoimagestatusbarcontroller.hxx>
#include <uielement/logotextstatusbarcontroller.hxx>
-#include <services/tabwindowservice.hxx>
#include <uielement/fontmenucontroller.hxx>
#include <uielement/fontsizemenucontroller.hxx>
#include <uielement/footermenucontroller.hxx>
@@ -86,7 +85,6 @@ COMPONENTGETFACTORY ( IFFACTORY( ::framework::MediaTypeDetectionHelper
IFFACTORY( ::framework::License ) else
IFFACTORY( ::framework::PopupMenuDispatcher ) else
IFFACTORY( ::framework::DispatchHelper ) else
- IFFACTORY( ::framework::TabWindowService ) else
IFFACTORY( ::framework::DispatchRecorder ) else
IFFACTORY( ::framework::DispatchRecorderSupplier ) else
IFFACTORY( ::framework::SimpleTextStatusbarController ) else
diff --git a/xmloff/Library_xo.mk b/xmloff/Library_xo.mk
index 4cad926570de..2e335b4175c4 100644
--- a/xmloff/Library_xo.mk
+++ b/xmloff/Library_xo.mk
@@ -182,6 +182,10 @@ $(eval $(call gb_Library_add_exception_objects,xo,\
xmloff/source/forms/property_meta_data \
xmloff/source/forms/strings \
xmloff/source/forms/valueproperties \
+ xmloff/source/forms/handler/form_handler_factory \
+ xmloff/source/forms/handler/property_handler_base \
+ xmloff/source/forms/handler/vcl_date_handler \
+ xmloff/source/forms/handler/vcl_time_handler \
xmloff/source/meta/MetaExportComponent \
xmloff/source/meta/MetaImportComponent \
xmloff/source/meta/xmlmetae \
diff --git a/xmloff/source/forms/form_handler_factory.hxx b/xmloff/inc/form_handler_factory.hxx
index 62bf94f74aa8..62bf94f74aa8 100755
--- a/xmloff/source/forms/form_handler_factory.hxx
+++ b/xmloff/inc/form_handler_factory.hxx
diff --git a/xmloff/source/forms/property_handler.hxx b/xmloff/inc/property_handler.hxx
index 247b4f17f798..247b4f17f798 100755
--- a/xmloff/source/forms/property_handler.hxx
+++ b/xmloff/inc/property_handler.hxx
diff --git a/xmloff/source/forms/property_ids.hxx b/xmloff/inc/property_ids.hxx
index 31004f2d9ff2..31004f2d9ff2 100755
--- a/xmloff/source/forms/property_ids.hxx
+++ b/xmloff/inc/property_ids.hxx
diff --git a/xmloff/prj/build.lst b/xmloff/prj/build.lst
index 967214d6f0e9..6f677525dbbb 100644
--- a/xmloff/prj/build.lst
+++ b/xmloff/prj/build.lst
@@ -1,5 +1,5 @@
xo xmloff : offapi svl vos NULL
zxo xmloff\prj nmake - all xo_prj NULL
-xo xmloff\qa\unoapi nmake - all xo_qa_unoapi xo_prj NULL
+xo xmloff\qa\unoapi nmake - all xo_qa_unoapi NULL
diff --git a/xmloff/source/forms/handler/makefile.mk b/xmloff/qa/unoapi/makefile.mk
index 574537ffd474..3cbbc5f2a797 100755..100644
--- a/xmloff/source/forms/handler/makefile.mk
+++ b/xmloff/qa/unoapi/makefile.mk
@@ -1,7 +1,6 @@
#*************************************************************************
-#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
+#
# Copyright 2000, 2010 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
@@ -22,34 +21,28 @@
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-PRJ=../../..
-
-PRJNAME=xmloff
-TARGET=form_handlers
-
-INCEXT=..
-
-ENABLE_EXCEPTIONS=TRUE
-
-# --- Settings -----------------------------------------------------
+#***********************************************************************/
-.INCLUDE : settings.mk
-.INCLUDE: $(PRJ)/util/makefile.pmk
+.IF "$(OOO_SUBSEQUENT_TESTS)" == ""
+nothing .PHONY:
+.ELSE
-# --- Files --------------------------------------------------------
+PRJ = ../..
+PRJNAME = xmloff
+TARGET = qa_unoapi
-SLOFILES = \
- $(SLO)/form_handler_factory.obj \
- $(SLO)/property_handler_base.obj \
- $(SLO)/vcl_date_handler.obj \
- $(SLO)/vcl_time_handler.obj
+.IF "$(OOO_JUNIT_JAR)" != ""
+PACKAGE = org/openoffice/xmloff/qa/unoapi
+JAVATESTFILES = Test.java
+JAVAFILES = $(JAVATESTFILES)
+JARFILES = OOoRunner.jar ridl.jar test.jar
+EXTRAJARFILES = $(OOO_JUNIT_JAR)
+.END
-# --- Tagets -------------------------------------------------------
+.INCLUDE: settings.mk
+.INCLUDE: target.mk
+.INCLUDE: installationtest.mk
-.INCLUDE : target.mk
+ALLTAR : javatest
-test:
- echo $(INCLUDE) \ No newline at end of file
+.END
diff --git a/xmloff/source/forms/property_meta_data.cxx b/xmloff/source/forms/property_meta_data.cxx
index 7f058d14b9b7..7dd5277cff28 100755
--- a/xmloff/source/forms/property_meta_data.cxx
+++ b/xmloff/source/forms/property_meta_data.cxx
@@ -30,7 +30,7 @@
#include "form_handler_factory.hxx"
#include "strings.hxx"
#include "xmloff/xmltoken.hxx"
-#include "xmlnmspe.hxx"
+#include "xmloff/xmlnmspe.hxx"
#include <tools/diagnose_ex.h>
#include <tools/debug.hxx>