summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xlpivot.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xlpivot.hxx')
-rw-r--r--sc/source/filter/inc/xlpivot.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/sc/source/filter/inc/xlpivot.hxx b/sc/source/filter/inc/xlpivot.hxx
index 1e993942071d..364fed962601 100644
--- a/sc/source/filter/inc/xlpivot.hxx
+++ b/sc/source/filter/inc/xlpivot.hxx
@@ -377,7 +377,7 @@ public:
/** Sets the item to 'empty' type. */
void SetEmpty();
/** Sets the item to 'text' type and adds the passed text. */
- void SetText( const rtl::OUString& rText );
+ void SetText( const OUString& rText );
/** Sets the item to 'double' type and adds the passed value. */
void SetDouble( double fValue );
/** Sets the item to 'date/time' type and adds the passed date. */
@@ -392,7 +392,7 @@ public:
/** Returns the current item type. */
inline XclPCItemType GetType() const { return meType; }
/** Returns the text representation of the item. */
- inline const rtl::OUString& ConvertToText() const { return maText; }
+ inline const OUString& ConvertToText() const { return maText; }
/** Returns true, if the passed iterm equals this item. */
bool IsEqual( const XclPCItem& rItem ) const;
@@ -400,7 +400,7 @@ public:
/** Returns true, if the item type is 'empty'. */
bool IsEmpty() const;
/** Returns pointer to text, if the item type is 'text', otherwise 0. */
- const rtl::OUString* GetText() const;
+ const OUString* GetText() const;
/** Returns pointer to value, if the item type is 'double', otherwise 0. */
const double* GetDouble() const;
/** Returns pointer to date, if the item type is 'date/time', otherwise 0. */
@@ -414,7 +414,7 @@ public:
private:
XclPCItemType meType; /// Type of the item.
- rtl::OUString maText; /// Text representation of the item.
+ OUString maText; /// Text representation of the item.
DateTime maDateTime; /// Value of a date/time item.
union
{
@@ -433,7 +433,7 @@ inline bool operator!=( const XclPCItem& rLeft, const XclPCItem& rRight ) { retu
/** Contains data for a pivot cache field (SXFIELD record). */
struct XclPCFieldInfo
{
- rtl::OUString maName; /// Name of the pivot cache field.
+ OUString maName; /// Name of the pivot cache field.
sal_uInt16 mnFlags; /// Various flags.
sal_uInt16 mnGroupChild; /// Field containing grouping info for this field.
sal_uInt16 mnGroupBase; /// Base field if this field contains grouping info.
@@ -530,7 +530,7 @@ struct XclPCInfo
sal_uInt16 mnStdFields; /// Number of standard pivot cache fields.
sal_uInt16 mnTotalFields; /// Number of all fields (standard, grouped, calculated).
sal_uInt16 mnSrcType; /// Database type.
- rtl::OUString maUserName; /// Name of user who last modified the cache.
+ OUString maUserName; /// Name of user who last modified the cache.
explicit XclPCInfo();
};
@@ -547,7 +547,7 @@ XclExpStream& operator<<( XclExpStream& rStrm, const XclPCInfo& rInfo );
/** A name for various pivot table info structs. Includes 'use cache' state. */
struct XclPTCachedName
{
- rtl::OUString maName; /// The visible name, if used.
+ OUString maName; /// The visible name, if used.
bool mbUseCache; /// true = Use name in cache instead of maName.
inline explicit XclPTCachedName() : mbUseCache( true ) {}
@@ -566,9 +566,9 @@ struct XclPTVisNameInfo
/** Returns true, if the name is set explicitly (maVisName.mbUseCache is false). */
inline bool HasVisName() const { return !maVisName.mbUseCache; }
/** Returns the name, if set explicitly (maVisName.mbUseCache is false). */
- const rtl::OUString* GetVisName() const;
+ const OUString* GetVisName() const;
/** Sets the visible name and enables usage of cache if name is empty. */
- void SetVisName( const rtl::OUString& rName );
+ void SetVisName( const OUString& rName );
};
// Field item settings ========================================================
@@ -626,7 +626,7 @@ struct XclPTFieldExtInfo
sal_uInt16 mnSortField; /// Index to data field sorting bases on.
sal_uInt16 mnShowField; /// Index to data field AutoShow bases on.
sal_uInt16 mnNumFmt;
- boost::scoped_ptr<rtl::OUString> mpFieldTotalName;
+ boost::scoped_ptr<OUString> mpFieldTotalName;
explicit XclPTFieldExtInfo();
@@ -707,8 +707,8 @@ XclExpStream& operator<<( XclExpStream& rStrm, const XclPTDataFieldInfo& rInfo )
/** Contains data for a pivot table (SXVIEW record). */
struct XclPTInfo
{
- rtl::OUString maTableName; /// The name of the pivot table.
- rtl::OUString maDataName; /// The visible name of the data field.
+ OUString maTableName; /// The name of the pivot table.
+ OUString maDataName; /// The visible name of the data field.
XclRange maOutXclRange; /// Output range.
XclAddress maDataXclPos; /// First cell containing data.
sal_uInt16 mnFirstHeadRow; /// First heading row.
@@ -758,7 +758,7 @@ struct XclPTViewEx9Info
sal_uInt32 mbReport; /// 2 for report* fmts ?
sal_uInt8 mnAutoFormat; /// AutoFormat ID
sal_uInt8 mnGridLayout; /// 0 == gridlayout, 0x10 == modern
- rtl::OUString maGrandTotalName;
+ OUString maGrandTotalName;
explicit XclPTViewEx9Info();
void Init( const ScDPObject& rDPObj );