summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/ftools.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-08-07 14:30:26 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-08-07 14:30:26 +0000
commit755bf4f117a0fa3e7a640491c2b7da6cd45a9cdd (patch)
tree8b2c034bd9e8b952559c2215b47c0b94fd79f97e /sc/source/filter/inc/ftools.hxx
parente5a8ac9c0b807a388983943adbbb0c5e78fe5a71 (diff)
INTEGRATION: CWS filtertracer01 (1.3.66); FILE MERGED
2003/07/15 12:05:56 dr 1.3.66.1: filter tracer
Diffstat (limited to 'sc/source/filter/inc/ftools.hxx')
-rw-r--r--sc/source/filter/inc/ftools.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sc/source/filter/inc/ftools.hxx b/sc/source/filter/inc/ftools.hxx
index a9dce9a03240..c6062ce2b956 100644
--- a/sc/source/filter/inc/ftools.hxx
+++ b/sc/source/filter/inc/ftools.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ftools.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2003-04-08 16:27:50 $
+ * last change: $Author: hr $ $Date: 2003-08-07 15:30:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -90,6 +90,10 @@
/** Expands to a pointer behind the last element of a STATIC data array (like STL end()). */
#define STATIC_TABLE_END( array ) ((array)+STATIC_TABLE_SIZE(array))
+/** Expands to a temporary String, created from an ASCII character array. */
+#define CREATE_STRING( ascii ) String( RTL_CONSTASCII_USTRINGPARAM( ascii ) )
+/** Expands to a temporary ::rtl::OUString, created from an ASCII character array. */
+#define CREATE_OUSTRING( ascii ) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ascii ) )
// Read from bitfields --------------------------------------------------------