diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-02-06 01:09:28 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-02-19 04:20:33 +0100 |
commit | 1d9bfd6e289a1cc8872038b54b060a282d02ea08 (patch) | |
tree | 05a50ce14156b4570862fa79340e5a02b39ee3ee /sc/inc | |
parent | b523c0244aef7c1e223f326eb8b5e5abdfbb9106 (diff) |
small clean-up
Change-Id: I6a327df821ea439e6dcffe26eeee022c3e3583e8
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/conditio.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx index 341e032b957c..57dd2d9a2ab8 100644 --- a/sc/inc/conditio.hxx +++ b/sc/inc/conditio.hxx @@ -281,8 +281,7 @@ private: mutable boost::scoped_ptr<ScConditionEntryCache> mpCache; }; -// single entry for conditional formatting - +// single condition entry for conditional formatting class SC_DLLPUBLIC ScCondFormatEntry : public ScConditionEntry { OUString aStyleName; @@ -375,7 +374,6 @@ private: }; // complete conditional formatting - class SC_DLLPUBLIC ScConditionalFormat: private boost::noncopyable { ScDocument* pDoc; @@ -433,7 +431,7 @@ public: bool MarkUsedExternalReferences() const; - // sorted (via PTRARR) by Index + // sorted (via boost::ptr_set) by Index // operator== only for sorting bool operator ==( const ScConditionalFormat& r ) const { return nKey == r.nKey; } bool operator < ( const ScConditionalFormat& r ) const { return nKey < r.nKey; } @@ -442,8 +440,7 @@ public: void endRendering(); }; -// List of areas and formats: - +// List of all conditional formats in a sheet class SC_DLLPUBLIC ScConditionalFormatList { private: |