summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/condformatbuffer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/oox/condformatbuffer.cxx')
-rw-r--r--sc/source/filter/oox/condformatbuffer.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/sc/source/filter/oox/condformatbuffer.cxx b/sc/source/filter/oox/condformatbuffer.cxx
index c83b84b87df0..50c5b33b802e 100644
--- a/sc/source/filter/oox/condformatbuffer.cxx
+++ b/sc/source/filter/oox/condformatbuffer.cxx
@@ -55,8 +55,6 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::sheet;
@@ -65,8 +63,6 @@ using namespace ::com::sun::star::table;
using namespace ::com::sun::star::uno;
-
-
namespace {
const sal_Int32 BIFF12_CFRULE_TYPE_CELLIS = 1;
@@ -120,8 +116,6 @@ const sal_uInt16 BIFF12_CFRULE_ABOVEAVERAGE = 0x0004;
const sal_uInt16 BIFF12_CFRULE_BOTTOM = 0x0008;
const sal_uInt16 BIFF12_CFRULE_PERCENT = 0x0010;
-
-
template< typename Type >
void lclAppendProperty( ::std::vector< PropertyValue >& orProps, const OUString& rPropName, const Type& rValue )
{
@@ -130,8 +124,6 @@ void lclAppendProperty( ::std::vector< PropertyValue >& orProps, const OUString&
orProps.back().Value <<= rValue;
}
-
-
void SetCfvoData( ColorScaleRuleModelEntry* pEntry, const AttributeList& rAttribs )
{
OUString aType = rAttribs.getString( XML_type, OUString() );
@@ -256,8 +248,6 @@ void ColorScaleRule::AddEntries( ScColorScaleFormat* pFormat, ScDocument* pDoc,
}
}
-
-
DataBarRule::DataBarRule( const CondFormat& rFormat ):
WorksheetHelper( rFormat ),
mpFormat(new ScDataBarFormatData)
@@ -313,8 +303,6 @@ void DataBarRule::SetData( ScDataBarFormat* pFormat, ScDocument* pDoc, const ScA
pFormat->SetDataBarData(mpFormat);
}
-
-
IconSetRule::IconSetRule( const CondFormat& rFormat ):
WorksheetHelper( rFormat ),
mpFormatData( new ScIconSetFormatData )
@@ -358,8 +346,6 @@ void IconSetRule::SetData( ScIconSetFormat* pFormat, ScDocument* pDoc, const ScA
pFormat->SetIconSetData(mpFormatData);
}
-
-
CondFormatRuleModel::CondFormatRuleModel() :
mnPriority( -1 ),
mnType( XML_TOKEN_INVALID ),
@@ -393,8 +379,6 @@ void CondFormatRuleModel::setBiff12TextType( sal_Int32 nOperator )
mnOperator = STATIC_ARRAY_SELECT( spnOperators, nOperator, XML_TOKEN_INVALID );
}
-
-
CondFormatRule::CondFormatRule( const CondFormat& rCondFormat, ScConditionalFormat* pFormat ) :
WorksheetHelper( rCondFormat ),
mrCondFormat( rCondFormat ),
@@ -956,15 +940,11 @@ IconSetRule* CondFormatRule::getIconSet()
return mpIconSet.get();
}
-
-
CondFormatModel::CondFormatModel() :
mbPivot( false )
{
}
-
-
CondFormat::CondFormat( const WorksheetHelper& rHelper ) :
WorksheetHelper( rHelper ),
mpFormat(NULL),
@@ -1038,8 +1018,6 @@ void CondFormat::insertRule( CondFormatRuleRef xRule )
}
}
-
-
CondFormatBuffer::CondFormatBuffer( const WorksheetHelper& rHelper ) :
WorksheetHelper( rHelper )
{