summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/workbookhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/workbookhelper.hxx')
-rw-r--r--sc/source/filter/inc/workbookhelper.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/inc/workbookhelper.hxx b/sc/source/filter/inc/workbookhelper.hxx
index 0e1b87d70a70..fa1ce19529b6 100644
--- a/sc/source/filter/inc/workbookhelper.hxx
+++ b/sc/source/filter/inc/workbookhelper.hxx
@@ -77,7 +77,7 @@ enum FilterType
/** Functor for case-insensitive string comparison, usable in maps etc. */
struct IgnoreCaseCompare
{
- bool operator()( const ::rtl::OUString& rName1, const ::rtl::OUString& rName2 ) const;
+ bool operator()( const OUString& rName1, const OUString& rName2 ) const;
};
// ============================================================================
@@ -157,7 +157,7 @@ public:
getSheetFromDoc( sal_Int16 nSheet ) const;
/** Returns a reference to the specified spreadsheet in the document model. */
::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSpreadsheet >
- getSheetFromDoc( const ::rtl::OUString& rSheet ) const;
+ getSheetFromDoc( const OUString& rSheet ) const;
/** Returns the XCellRange interface for the passed cell range address. */
::com::sun::star::uno::Reference< ::com::sun::star::table::XCellRange >
@@ -169,13 +169,13 @@ public:
getStyleFamily( bool bPageStyles ) const;
/** Returns the specified cell or page style from the Calc document. */
::com::sun::star::uno::Reference< ::com::sun::star::style::XStyle >
- getStyleObject( const ::rtl::OUString& rStyleName, bool bPageStyle ) const;
+ getStyleObject( const OUString& rStyleName, bool bPageStyle ) const;
/** Creates and returns a defined name on-the-fly in the Calc document.
The name will not be buffered in the global defined names buffer.
@param orName (in/out-parameter) Returns the resulting used name. */
ScRangeData* createNamedRangeObject(
- ::rtl::OUString& orName,
+ OUString& orName,
const ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken>& rTokens,
sal_Int32 nIndex,
sal_Int32 nNameFlags = 0 ) const;
@@ -184,7 +184,7 @@ public:
The name will not be buffered in the global defined names buffer.
@param orName (in/out-parameter) Returns the resulting used name. */
ScRangeData* createLocalNamedRangeObject(
- ::rtl::OUString& orName,
+ OUString& orName,
const ::com::sun::star::uno::Sequence< ::com::sun::star::sheet::FormulaToken>& rTokens,
sal_Int32 nIndex,
sal_Int32 nNameFlags = 0, sal_Int32 nTab = -1 ) const;
@@ -194,7 +194,7 @@ public:
@param orName (in/out-parameter) Returns the resulting used name. */
::com::sun::star::uno::Reference< ::com::sun::star::sheet::XDatabaseRange >
createDatabaseRangeObject(
- ::rtl::OUString& orName,
+ OUString& orName,
const ::com::sun::star::table::CellRangeAddress& rRangeAddr ) const;
/** Creates and returns an unnamed database range on-the-fly in the Calc document.
@@ -206,7 +206,7 @@ public:
/** Creates and returns a com.sun.star.style.Style object for cells or pages. */
::com::sun::star::uno::Reference< ::com::sun::star::style::XStyle >
createStyleObject(
- ::rtl::OUString& orStyleName,
+ OUString& orStyleName,
bool bPageStyle ) const;
// buffers ----------------------------------------------------------------