summaryrefslogtreecommitdiff
path: root/sc/source/core/data/stlsheet.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-04-06 17:13:43 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-04-06 17:19:54 +0200
commitc4c51709eaa02a5c9a2af3e5d436790307109813 (patch)
treec67362b4f2c3d3f34655ca65ec10d54e1509cf73 /sc/source/core/data/stlsheet.cxx
parentc78f918a7cb267a713804b8feacc3425196d4428 (diff)
whitespace cleanup in sc
Change-Id: Id1dcadcac179c52977e48a6912ce4d5fd542f60c
Diffstat (limited to 'sc/source/core/data/stlsheet.cxx')
-rw-r--r--sc/source/core/data/stlsheet.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/sc/source/core/data/stlsheet.cxx b/sc/source/core/data/stlsheet.cxx
index 4e4a0a2517ec..0e7fd7ca172f 100644
--- a/sc/source/core/data/stlsheet.cxx
+++ b/sc/source/core/data/stlsheet.cxx
@@ -48,8 +48,6 @@ TYPEINIT1(ScStyleSheet, SfxStyleSheet);
#define TWO_CM 1134
#define HFDIST_CM 142
-
-
ScStyleSheet::ScStyleSheet( const OUString& rName,
ScStyleSheetPool& rPoolP,
SfxStyleFamily eFamily,
@@ -60,29 +58,21 @@ ScStyleSheet::ScStyleSheet( const OUString& rName,
{
}
-
-
ScStyleSheet::ScStyleSheet( const ScStyleSheet& rStyle )
: SfxStyleSheet ( rStyle )
, eUsage( UNKNOWN )
{
}
-
-
ScStyleSheet::~ScStyleSheet()
{
}
-
-
bool ScStyleSheet::HasFollowSupport() const
{
return false;
}
-
-
bool ScStyleSheet::HasParentSupport () const
{
bool bHasParentSupport = false;
@@ -100,8 +90,6 @@ bool ScStyleSheet::HasParentSupport () const
return bHasParentSupport;
}
-
-
bool ScStyleSheet::SetParent( const OUString& rParentName )
{
bool bResult = false;
@@ -135,8 +123,6 @@ bool ScStyleSheet::SetParent( const OUString& rParentName )
return bResult;
}
-
-
SfxItemSet& ScStyleSheet::GetItemSet()
{
if ( !pSet )
@@ -252,8 +238,6 @@ SfxItemSet& ScStyleSheet::GetItemSet()
return *pSet;
}
-
-
bool ScStyleSheet::IsUsed() const
{
if ( GetFamily() == SFX_STYLE_FAMILY_PARA )
@@ -271,8 +255,6 @@ bool ScStyleSheet::IsUsed() const
return true;
}
-
-
void ScStyleSheet::Notify( SfxBroadcaster&, const SfxHint& rHint )
{
if ( rHint.ISA(SfxSimpleHint) )
@@ -280,8 +262,6 @@ void ScStyleSheet::Notify( SfxBroadcaster&, const SfxHint& rHint )
GetItemSet().SetParent( NULL );
}
-
-
// schmutzige Tricks, um die Standard-Vorlage immer als "Standard" zu speichern,
// obwohl der fuer den Benutzer sichtbare Name uebersetzt ist:
@@ -332,6 +312,4 @@ bool ScStyleSheet::SetName( const OUString& rNew )
return SfxStyleSheet::SetName( rNew );
}
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */