summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svtools/source/dialogs/insdlg.cxx6
-rw-r--r--svtools/source/dialogs/printdlg.cxx6
-rw-r--r--svtools/source/edit/makefile.mk8
-rw-r--r--svtools/source/edit/textwindowpeer.cxx7
-rw-r--r--svtools/source/misc/svtaccessiblefactory.cxx7
-rw-r--r--svtools/source/uno/unoiface.cxx7
6 files changed, 24 insertions, 17 deletions
diff --git a/svtools/source/dialogs/insdlg.cxx b/svtools/source/dialogs/insdlg.cxx
index 9e038d77d9e4..111062065dfa 100644
--- a/svtools/source/dialogs/insdlg.cxx
+++ b/svtools/source/dialogs/insdlg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: insdlg.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 21:27:53 $
+ * last change: $Author: rt $ $Date: 2007-07-10 09:19:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -78,9 +78,9 @@
using namespace ::com::sun::star;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::uno;
-using namespace ::rtl;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::ui::dialogs;
+using ::rtl::OUString;
#define _SVSTDARR_STRINGSDTOR
#include <svtools/svstdarr.hxx>
diff --git a/svtools/source/dialogs/printdlg.cxx b/svtools/source/dialogs/printdlg.cxx
index 8271a258d258..b4ba3b7bfac0 100644
--- a/svtools/source/dialogs/printdlg.cxx
+++ b/svtools/source/dialogs/printdlg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: printdlg.cxx,v $
*
- * $Revision: 1.25 $
+ * $Revision: 1.26 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 21:28:32 $
+ * last change: $Author: rt $ $Date: 2007-07-10 09:19:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -88,7 +88,7 @@
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
using namespace com::sun::star::ui::dialogs;
-using namespace rtl;
+using rtl::OUString;
struct SvtPrinterImpl
{
diff --git a/svtools/source/edit/makefile.mk b/svtools/source/edit/makefile.mk
index 44ed71ca95c7..b56781c8dcbf 100644
--- a/svtools/source/edit/makefile.mk
+++ b/svtools/source/edit/makefile.mk
@@ -4,9 +4,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.13 $
+# $Revision: 1.14 $
#
-# last change: $Author: hr $ $Date: 2007-06-27 14:52:07 $
+# last change: $Author: rt $ $Date: 2007-07-10 09:20:03 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -62,9 +62,7 @@ EXCEPTIONSFILES= \
$(SLO)$/textview.obj \
$(SLO)$/textdoc.obj \
$(SLO)$/texteng.obj \
- $(OBJ)$/textview.obj \
- $(SLO)$/textwindowpeer.obj \
- $(OBJ)$/textwindowpeer.obj
+ $(SLO)$/textwindowpeer.obj
# --- Targets ------------------------------------------------------
diff --git a/svtools/source/edit/textwindowpeer.cxx b/svtools/source/edit/textwindowpeer.cxx
index 134e5455c292..eb089e517a19 100644
--- a/svtools/source/edit/textwindowpeer.cxx
+++ b/svtools/source/edit/textwindowpeer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: textwindowpeer.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2007-06-29 12:21:20 $
+ * last change: $Author: rt $ $Date: 2007-07-10 09:20:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,6 +59,9 @@
*
************************************************************************/
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_svtools.hxx"
+
#include <svtools/textwindowpeer.hxx>
#ifndef _TEXTVIEW_HXX
diff --git a/svtools/source/misc/svtaccessiblefactory.cxx b/svtools/source/misc/svtaccessiblefactory.cxx
index be4ab91313ce..5865d725cc92 100644
--- a/svtools/source/misc/svtaccessiblefactory.cxx
+++ b/svtools/source/misc/svtaccessiblefactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svtaccessiblefactory.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2007-06-27 14:55:51 $
+ * last change: $Author: rt $ $Date: 2007-07-10 09:20:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,6 +59,9 @@
*
************************************************************************/
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_svtools.hxx"
+
#ifndef SVTOOLS_ACCESSIBLE_FACTORY_ACCESS_HXX
#include "svtaccessiblefactory.hxx"
#endif
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index 75df1de851b1..f680eb3e57bd 100644
--- a/svtools/source/uno/unoiface.cxx
+++ b/svtools/source/uno/unoiface.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: unoiface.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: hr $ $Date: 2007-06-29 12:34:48 $
+ * last change: $Author: rt $ $Date: 2007-07-10 09:20:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -33,6 +33,9 @@
*
************************************************************************/
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_svtools.hxx"
+
#define _SVT_UNOIFACE_CXX
#ifndef _TOOLS_DEBUG_HXX