summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorLior Kaplan <kaplanlior@gmail.com>2011-11-29 18:17:18 +0200
committerLior Kaplan <kaplanlior@gmail.com>2011-11-29 18:17:18 +0200
commit37f509e15d74e005cbe264dd27106359c4165657 (patch)
treef1751356531a42886c28dbb37e8aab97e2c02979 /oox
parent8aa73a8f74cfcdc2fffdc16c8094bd257c8ade0d (diff)
Replace formattings with formatting
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/xls/condformatbuffer.hxx4
-rw-r--r--oox/inc/oox/xls/worksheethelper.hxx2
-rw-r--r--oox/source/xls/worksheethelper.cxx4
3 files changed, 5 insertions, 5 deletions
diff --git a/oox/inc/oox/xls/condformatbuffer.hxx b/oox/inc/oox/xls/condformatbuffer.hxx
index 3dba25beedb5..43541781d6b1 100644
--- a/oox/inc/oox/xls/condformatbuffer.hxx
+++ b/oox/inc/oox/xls/condformatbuffer.hxx
@@ -171,7 +171,7 @@ public:
/** Imports settings from the CFHEADER record. */
void importCfHeader( BiffInputStream& rStrm );
- /** Creates all conditional formattings in the Calc document. */
+ /** Creates all conditional formatting in the Calc document. */
void finalizeImport();
/** Converts an OOXML condition operator token to the API constant. */
@@ -182,7 +182,7 @@ private:
private:
typedef RefVector< CondFormat > CondFormatVec;
- CondFormatVec maCondFormats; /// All conditional formattings in a sheet.
+ CondFormatVec maCondFormats; /// All conditional formatting in a sheet.
};
// ============================================================================
diff --git a/oox/inc/oox/xls/worksheethelper.hxx b/oox/inc/oox/xls/worksheethelper.hxx
index c824c4eb922b..33ae0a8e0c82 100644
--- a/oox/inc/oox/xls/worksheethelper.hxx
+++ b/oox/inc/oox/xls/worksheethelper.hxx
@@ -255,7 +255,7 @@ public:
/** Returns the buffer for cell contents and cell formatting. */
SheetDataBuffer& getSheetData() const;
- /** Returns the conditional formattings in this sheet. */
+ /** Returns the conditional formatting in this sheet. */
CondFormatBuffer& getCondFormats() const;
/** Returns the buffer for all cell comments in this sheet. */
CommentsBuffer& getComments() const;
diff --git a/oox/source/xls/worksheethelper.cxx b/oox/source/xls/worksheethelper.cxx
index ba5014ff09dd..e8a29729638c 100644
--- a/oox/source/xls/worksheethelper.cxx
+++ b/oox/source/xls/worksheethelper.cxx
@@ -277,7 +277,7 @@ public:
/** Returns the buffer for cell contents and cell formatting. */
inline SheetDataBuffer& getSheetData() { return maSheetData; }
- /** Returns the conditional formattings in this sheet. */
+ /** Returns the conditional formatting in this sheet. */
inline CondFormatBuffer& getCondFormats() { return maCondFormats; }
/** Returns the buffer for all cell comments in this sheet. */
inline CommentsBuffer& getComments() { return maComments; }
@@ -396,7 +396,7 @@ private:
ValidationModelList maValidations; /// Cell ranges containing data validation settings.
ValueRangeSet maManualRowHeights; /// Rows that need manual height independent from own settings.
SheetDataBuffer maSheetData; /// Buffer for cell contents and cell formatting.
- CondFormatBuffer maCondFormats; /// Buffer for conditional formattings.
+ CondFormatBuffer maCondFormats; /// Buffer for conditional formatting.
CommentsBuffer maComments; /// Buffer for all cell comments in this sheet.
AutoFilterBuffer maAutoFilters; /// Sheet auto filters (not associated to a table).
QueryTableBuffer maQueryTables; /// Buffer for all web query tables in this sheet.