summaryrefslogtreecommitdiff
path: root/sc/source/core/data/documen8.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/documen8.cxx')
-rw-r--r--sc/source/core/data/documen8.cxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/sc/source/core/data/documen8.cxx b/sc/source/core/data/documen8.cxx
index e14236df2d91..5ab1e3129796 100644
--- a/sc/source/core/data/documen8.cxx
+++ b/sc/source/core/data/documen8.cxx
@@ -109,8 +109,6 @@ void ScDocument::ImplCreateOptions()
pViewOptions = new ScViewOptions();
}
-
-
void ScDocument::ImplDeleteOptions()
{
delete pDocOptions;
@@ -118,8 +116,6 @@ void ScDocument::ImplDeleteOptions()
delete pExtDocOptions;
}
-
-
SfxPrinter* ScDocument::GetPrinter(bool bCreateIfNotExist)
{
if ( !pPrinter && bCreateIfNotExist )
@@ -150,8 +146,6 @@ SfxPrinter* ScDocument::GetPrinter(bool bCreateIfNotExist)
return pPrinter;
}
-
-
void ScDocument::SetPrinter( SfxPrinter* pNewPrinter )
{
if ( pNewPrinter == pPrinter )
@@ -172,8 +166,6 @@ void ScDocument::SetPrinter( SfxPrinter* pNewPrinter )
InvalidateTextWidth(NULL, NULL, false); // in both cases
}
-
-
void ScDocument::SetPrintOptions()
{
if ( !pPrinter ) GetPrinter(); // setzt pPrinter
@@ -196,8 +188,6 @@ void ScDocument::SetPrintOptions()
}
}
-
-
VirtualDevice* ScDocument::GetVirtualDevice_100th_mm()
{
if (!pVirtualDevice_100th_mm)
@@ -226,8 +216,6 @@ OutputDevice* ScDocument::GetRefDevice()
return pRefDevice;
}
-
-
void ScDocument::ModifyStyleSheet( SfxStyleSheetBase& rStyleSheet,
const SfxItemSet& rChanges )
{
@@ -309,8 +297,6 @@ void ScDocument::ModifyStyleSheet( SfxStyleSheetBase& rStyleSheet,
}
}
-
-
void ScDocument::CopyStdStylesFrom( ScDocument* pSrcDoc )
{
// number format exchange list has to be handled here, too
@@ -318,8 +304,6 @@ void ScDocument::CopyStdStylesFrom( ScDocument* pSrcDoc )
xPoolHelper->GetStylePool()->CopyStdStylesFrom( pSrcDoc->xPoolHelper->GetStylePool() );
}
-
-
void ScDocument::InvalidateTextWidth( const OUString& rStyleName )
{
const SCTAB nCount = GetTableCount();
@@ -328,8 +312,6 @@ void ScDocument::InvalidateTextWidth( const OUString& rStyleName )
InvalidateTextWidth( i );
}
-
-
void ScDocument::InvalidateTextWidth( SCTAB nTab )
{
ScAddress aAdrFrom( 0, 0, nTab );
@@ -337,8 +319,6 @@ void ScDocument::InvalidateTextWidth( SCTAB nTab )
InvalidateTextWidth( &aAdrFrom, &aAdrTo, false );
}
-
-
bool ScDocument::IsPageStyleInUse( const OUString& rStrPageStyle, SCTAB* pInTab )
{
bool bInUse = false;
@@ -354,8 +334,6 @@ bool ScDocument::IsPageStyleInUse( const OUString& rStrPageStyle, SCTAB* pInTab
return bInUse;
}
-
-
bool ScDocument::RemovePageStyleInUse( const OUString& rStyle )
{
bool bWasInUse = false;
@@ -386,8 +364,6 @@ bool ScDocument::RenamePageStyleInUse( const OUString& rOld, const OUString& rNe
return bWasInUse;
}
-
-
sal_uInt8 ScDocument::GetEditTextDirection(SCTAB nTab) const
{
EEHorizontalTextDirection eRet = EE_HTEXTDIR_DEFAULT;
@@ -476,8 +452,6 @@ void ScDocument::InvalidateTextWidth( const ScAddress* pAdrFrom, const ScAddress
}
}
-
-
#define CALCMAX 1000 // Berechnungen
#define ABORT_EVENTS (VCL_INPUT_ANY & ~VCL_INPUT_TIMER & ~VCL_INPUT_OTHER)
@@ -954,8 +928,6 @@ ScDdeLink* lclGetDdeLink( const sfx2::LinkManager* pLinkManager, size_t nDdePos
} // namespace
-
-
bool ScDocument::FindDdeLink( const OUString& rAppl, const OUString& rTopic, const OUString& rItem,
sal_uInt8 nMode, size_t& rnDdePos )
{
@@ -1031,8 +1003,6 @@ bool ScDocument::SetDdeLinkResultMatrix( size_t nDdePos, ScMatrixRef pResults )
return false;
}
-
-
bool ScDocument::HasAreaLinks() const
{
const sfx2::LinkManager* pMgr = GetDocLinkManager().getExistingLinkManager();
@@ -1154,8 +1124,6 @@ void ScDocument::UpdateRefAreaLinks( UpdateRefMode eUpdateRefMode,
}
}
-
-
// TimerDelays etc.
void ScDocument::KeyInput( const KeyEvent& )
{
@@ -1165,8 +1133,6 @@ void ScDocument::KeyInput( const KeyEvent& )
apTemporaryChartLock->StartOrContinueLocking();
}
-
-
bool ScDocument::CheckMacroWarn()
{
// The check for macro configuration, macro warning and disabling is now handled
@@ -1175,8 +1141,6 @@ bool ScDocument::CheckMacroWarn()
return true;
}
-
-
SfxBindings* ScDocument::GetViewBindings()
{
// used to invalidate slots after changes to this document
@@ -1204,8 +1168,6 @@ ScDrawLayer* ScDocument::GetDrawLayer()
return pDrawLayer;
}
-
-
void ScDocument::TransliterateText( const ScMarkData& rMultiMark, sal_Int32 nType )
{
OSL_ENSURE( rMultiMark.IsMultiMarked(), "TransliterateText: no selection" );