summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/autofilterbuffer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/autofilterbuffer.hxx')
-rw-r--r--sc/source/filter/inc/autofilterbuffer.hxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sc/source/filter/inc/autofilterbuffer.hxx b/sc/source/filter/inc/autofilterbuffer.hxx
index 6507a1874ee4..848e33793019 100644
--- a/sc/source/filter/inc/autofilterbuffer.hxx
+++ b/sc/source/filter/inc/autofilterbuffer.hxx
@@ -33,8 +33,6 @@ namespace com { namespace sun { namespace star {
namespace oox {
namespace xls {
-
-
/** Contains UNO API filter settings for a column in a filtered range. */
struct ApiFilterSettings
{
@@ -50,8 +48,6 @@ struct ApiFilterSettings
void appendField( bool bAnd, const std::vector<OUString>& rValues );
};
-
-
/** Base class for specific filter settings for a column in a filtered range.
*/
class FilterSettingsBase : public WorkbookHelper
@@ -70,8 +66,6 @@ public:
typedef ::boost::shared_ptr< FilterSettingsBase > FilterSettingsRef;
-
-
/** Settings for a discrete filter, specifying a list of values to be shown in
the filtered range.
*/
@@ -96,8 +90,6 @@ private:
bool mbShowBlank;
};
-
-
/** Settings for a top-10 filter. */
class Top10Filter : public FilterSettingsBase
{
@@ -118,8 +110,6 @@ private:
bool mbPercent; /// True = percentage, false = number of items.
};
-
-
/** A filter criterion for a custom filter. */
struct FilterCriterionModel
{
@@ -137,8 +127,6 @@ struct FilterCriterionModel
void readBiffData( SequenceInputStream& rStrm );
};
-
-
/** Settings for a custom filter, specifying one or two comparison operators
associated with some values.
*/
@@ -166,8 +154,6 @@ private:
bool mbAnd;
};
-
-
/** A column in a filtered range. Contains an object with specific filter
settings for the cells in the column.
*/
@@ -200,8 +186,6 @@ private:
bool mbShowButton;
};
-
-
class AutoFilter : public WorkbookHelper
{
public:
@@ -227,8 +211,6 @@ private:
::com::sun::star::table::CellRangeAddress maRange;
};
-
-
class AutoFilterBuffer : public WorkbookHelper
{
public:
@@ -254,8 +236,6 @@ private:
AutoFilterVector maAutoFilters;
};
-
-
} // namespace xls
} // namespace oox